# HG changeset patch # User David Douard # Date 1474231228 -7200 # Node ID 4fa6621fec0f1a2ac41f046d7b847c8df016ff4f # Parent 70aad9a1272b000acf7b347d81ff45f12ce1f98b [hp34970a] an article dedicted to the protocol diff -r 70aad9a1272b -r 4fa6621fec0f content/hp34970a_protocol.rst --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/content/hp34970a_protocol.rst Sun Sep 18 22:40:28 2016 +0200 @@ -0,0 +1,214 @@ +========================================================== + HP 34970A Data Acquisition Unit - communication protocol +========================================================== + +:Author: David Douard +:Category: Electronics +:Tags: HP, 34970A, DMM, repair, test equipment +:series: HP 34970A repair +:JavaScripts: default.js, WaveDrom.js + +In order to build a replacement display for the HP34970A data +acquisition unit, I needed to understand the communication protocol +between the CPU board and the front panel assembly. + +General description +=================== + +The unit is built with four boards: + +- A1 is the main bard, with the PSU, the main controller and the floating logic, + +- A2 is the front panel with the display and the keypad, + +- A3 is the backplane on which I/O modules are plugged, + +- A4 is the (optional) internal 6.5 digits DMM. + +.. image:: {filename}/images/hp34970a/block_diagram.svg + :alt: System Block Diagram of the HP34970A. + + +The commnucation between the different system blocks is done with +asynchronous serial links. They use the rather uncommon bit rate of +187500 baud, with a classic 8N1 schema. + + +The CPU <-> Display Panel communication protocol +================================================ + +The communication protocol between the main controller (CPU) board and +the display panel (DP) consists in "datagrams" sent using the general +pattern: + +- when a device (CPU or DP) wants to take control of the communication + bus, it sends a ``Start of Transmission`` (SoT) signal (0x66), + +- each sent char (but the end of transmission) must be acknowledged + (ack value may vary), + +- at the end of a communication, the initiator send a "End of + Transmission" (EoT, 0x55). This sent value is not acknowledged. + +- the keyboard can interrupt a CPU->DP communication in progress by + not acknowledge a received byte, but sending a SoT instead of the + expected ACK value, + +- acknowledge values are: + + - 0x99 as a response to the SoT, + + - 0x00 otherise + + +The CPU->DP transmission protocol looks like: + +.. wavedrom:: + + { signal: [ + {name: "Rx", wave: "z3x4x4x=x=x|.=x3x", data: ["0x66", "CMD", "LEN", "D0", "D1", "Dn", "0x55"] }, + {name: "Tx", wave: "zx5x5x5x5x5x|.5x.", data: ["0x99", "0x00","0x00", "0x00", "0x00", "0x00"] }, + ]} + +Two (or more) datagrams can be transmitted in a single "transmission", +ie. without sending the EoT byte, eg.: + +.. wavedrom:: + + { signal: [ + {name: "Rx", wave: "z3x4x4x|=x3x4x|3x", + data: ["0x66", "0x0C", "0x03", "D3", "0x66", "0x0A", "0x55"] }, + {name: "Tx", wave: "zx5x5x5x|5x5x5x|x", + data: ["0x99", "0x00", "0x00", "0x00", "0x99", "0x00"] }, + ]} + + +When the user press a key on the front panel, a slightly simpler "packet transmission" occurs: + +.. wavedrom:: + + { signal: [ + {name: "Rx", wave: "zz5x5xx", data: ["0x99", "0x00"]}, + {name: "Tx", wave: "z3x4x3x", data: ["0x66", "KP", "0x55"]}, + ]} + + +Sending data to the main display +================================ + +The main display consist in 13 17-segments digits, in which the +character is displayed by a main 14-digits, and the punctuation with 3 +segments (2 dots and a comma, allowing to represent the signs ".", +",", ":" and ";"). Punctuation signs are also very close to the +preceding chracters. + +.. image:: {filename}/images/hp34970a/digit.jpg + :alt: 17-segments digit of the main display. + +The command used to send text to the main display is ``0x00``. The +character ``0x09`` (tabulation) has a special meaning: it marks the +beginning and the end of a part of the text to be displayed darker +than the usual. This is used to emphasis a portion of the displayed +text. Also, as the punctuation signs do not consume a digit, the +displayed text can be larger than 13 characters. + + +Sending data to the Channels display +==================================== + +This area only allows to display 3 7-segments digits. The command is +``0x0C``, the payload is thus 3 bytes long. + +.. image:: {filename}/images/hp34970a/channel.jpg + :alt: The display area dedicated to current channel. + :align: center + +Flags +===== + +The display also has several flags. Display flags are selected by +sending the ``0x0A`` command. The payload is 4 bytes long. Each bit +of these 4 bytes represent a flag on the display. + +Let's consider the following (we don't represent the acknowledgements here): + +.. wavedrom:: + + { signal: [ + {name: "Rx", wave: "z344====3x", + data: ["0x66", "0x0A", "0x04", "F1", "F2", "F3", "F4", "0x55"]} + ]} + +Then the flags I've identified so far are: + +.. wavedrom:: + + { signal: [ + {name: "bit", wave: "z========z", + data: ["7", "6", "5", "4", "3", "2", "1", "0"]}, + + {name: "F1", wave: "z=3333333z", + data: ["", "HI", "Alarm", "LO", "Channels", "Ch. frame", "Mx+B", ""]}, + {name: "F2", wave: "z===33333z", + data: ["", "", "", "4W", "1", "3", "4", "2"]}, + {name: "F3", wave: "z========z", + data: ["", "", "", "", "", "", "", ""]}, + {name: "F4", wave: "z=3=33===z", + data: ["", "CONFIG", "", "MON", "VIEW", "", "", ""]}, + ], + config: { hscale: 2 }, + } + + + + + +Keypad +====== + +Note that the front panel sends a "key press event" and a "key +released event", depending on the value of the bit 7: + +:0: key pressed +:1: key released + +The bit 8 of the key event byte is set high for the knob. + +.. wavedrom:: + + {signal: [ + + {name: "bit", wave: "z========z", + data: ["7", "6", "5", "4", "3", "2", "1", "0"]}, + {name: "KP", wave: "z34=.....z", + data: ["Knob", "Key", "Key Code"]}, + ], + config: { hscale: 1 }, + } + + +The key codes are: + +:0x00: View +:0x01: Mon +:0x02: Sto/Rcl +:0x03: Scan +:0x04: Alarm +:0x05: Mx+B +:0x06: Measure +:0x07: Interval +:0x08: Card Reset +:0x09: Close +:0x0A: Open +:0x0B: Read +:0x0C: Shift +:0x0D: Write +:0x0E: Left +:0x0F: Right + +:0x10: Advanced +:0x11: Step + +For the knob (including the "Knob" bit): +:0x80: Knob left +:0x81: Knob right diff -r 70aad9a1272b -r 4fa6621fec0f content/images/hp34970a/block_diagram.svg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/content/images/hp34970a/block_diagram.svg Sun Sep 18 22:40:28 2016 +0200 @@ -0,0 +1,227 @@ + + + +image/svg+xml5 + \ No newline at end of file diff -r 70aad9a1272b -r 4fa6621fec0f content/images/hp34970a/channel.jpg Binary file content/images/hp34970a/channel.jpg has changed diff -r 70aad9a1272b -r 4fa6621fec0f content/images/hp34970a/digit.jpg Binary file content/images/hp34970a/digit.jpg has changed diff -r 70aad9a1272b -r 4fa6621fec0f content/js/WaveDrom.js --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/content/js/WaveDrom.js Sun Sep 18 22:40:28 2016 +0200 @@ -0,0 +1,2 @@ +/*! wavedrom 2016-07-28 */ +!function a(b,c,d){function e(g,h){if(!c[g]){if(!b[g]){var i="function"==typeof require&&require;if(!h&&i)return i(g,!0);if(f)return f(g,!0);var j=new Error("Cannot find module '"+g+"'");throw j.code="MODULE_NOT_FOUND",j}var k=c[g]={exports:{}};b[g][0].call(k.exports,function(a){var c=b[g][1][a];return e(c?c:a)},k,k.exports,a,b,c,d)}return c[g].exports}for(var f="function"==typeof require&&require,g=0;gb+e.offsetWidth||a.yd+e.offsetHeight)&&(e.parentNode.removeChild(e),document.body.removeEventListener("mousedown",c,!1))}var d,e;d=document.getElementById(b+a),d.childNodes[0].addEventListener("contextmenu",function(f){var g,h,i;e=document.createElement("div"),e.className="wavedromMenu",e.style.top=f.y+"px",e.style.left=f.x+"px",g=document.createElement("ul"),h=document.createElement("li"),h.innerHTML="Save as PNG",g.appendChild(h),i=document.createElement("li"),i.innerHTML="Save as SVG",g.appendChild(i),e.appendChild(g),document.body.appendChild(e),h.addEventListener("click",function(){var f,g,h,i,j,k,l,m;f="",0!==a&&(g=document.getElementById(b+0),f+=g.innerHTML.substring(166,g.innerHTML.indexOf(''))),f=[d.innerHTML.slice(0,166),f,d.innerHTML.slice(166)].join(""),h="data:image/svg+xml;base64,"+btoa(f),i=new Image,i.src=h,j=document.createElement("canvas"),j.width=i.width,j.height=i.height,k=j.getContext("2d"),k.drawImage(i,0,0),l=j.toDataURL("image/png"),m=document.createElement("a"),m.href=l,m.download="wavedrom.png",m.click(),e.parentNode.removeChild(e),document.body.removeEventListener("mousedown",c,!1)},!1),i.addEventListener("click",function(){var f,g,h,i;f="",0!==a&&(g=document.getElementById(b+0),f+=g.innerHTML.substring(166,g.innerHTML.indexOf(''))),f=[d.innerHTML.slice(0,166),f,d.innerHTML.slice(166)].join(""),h="data:image/svg+xml;base64,"+btoa(f),i=document.createElement("a"),i.href=h,i.download="wavedrom.svg",i.click(),e.parentNode.removeChild(e),document.body.removeEventListener("mousedown",c,!1)},!1),e.addEventListener("contextmenu",function(a){a.preventDefault()},!1),document.body.addEventListener("mousedown",c,!1),f.preventDefault()},!1)}b.exports=d},{}],2:[function(a,b,c){"use strict";var d=a("./jsonml-parse");b.exports=d},{"./jsonml-parse":15}],3:[function(a,b,c){"use strict";function d(){f(0,e("InputJSON_0"),"WaveDrom_Display_")}var e=a("./eva"),f=a("./render-wave-form");b.exports=d},{"./eva":4,"./render-wave-form":28}],4:[function(require,module,exports){"use strict";function eva(id){function erra(a){return{signal:[{name:["tspan",["tspan",{class:"error h5"},"Error: "],a.message]}]}}var TheTextBox,source;if(TheTextBox=document.getElementById(id),TheTextBox.type&&"textarea"===TheTextBox.type)try{source=eval("("+TheTextBox.value+")")}catch(a){return erra(a)}else try{source=eval("("+TheTextBox.innerHTML+")")}catch(a){return erra(a)}if("[object Object]"!==Object.prototype.toString.call(source))return erra({message:'[Semantic]: The root has to be an Object: "{signal:[...]}"'});if(source.signal){if("[object Array]"!==Object.prototype.toString.call(source.signal))return erra({message:'[Semantic]: "signal" object has to be an Array "signal:[]"'})}else{if(!source.assign)return erra({message:'[Semantic]: "signal:[...]" or "assign:[...]" property is missing inside the root Object'});if("[object Array]"!==Object.prototype.toString.call(source.assign))return erra({message:'[Semantic]: "assign" object hasto be an Array "assign:[]"'})}return source}module.exports=eva},{}],5:[function(a,b,c){"use strict";function d(a){var b=0,c=0,d=[];return a.forEach(function(a){"vvv-2"===a||"vvv-3"===a||"vvv-4"===a||"vvv-5"===a?c+=1:0!==c&&(d.push(b-(c+1)/2),c=0),b+=1}),0!==c&&d.push(b-(c+1)/2),d}b.exports=d},{}],6:[function(a,b,c){"use strict";function d(a,b,c){var d,e,f=[];if(4===a.length){for(e=0;e");a.tagName===c.tagName&&(a=c)}catch(a){console.log(a)}for(var e in b)if(b.hasOwnProperty(e)){var i=b[e];e&&null!==i&&"undefined"!=typeof i&&(e=f[e.toLowerCase()]||e,"style"===e?"undefined"!=typeof a.style.cssText?a.style.cssText=i:a.style=i:h[e]?(d(a,e,i),g[e]&&d(a,g[e],i)):"string"==typeof i||"number"==typeof i||"boolean"==typeof i?(a.setAttribute(e,i),g[e]&&a.setAttribute(g[e],i)):(a[e]=i,g[e]&&(a[g[e]]=i)))}return a}var f={rowspan:"rowSpan",colspan:"colSpan",cellpadding:"cellPadding",cellspacing:"cellSpacing",tabindex:"tabIndex",accesskey:"accessKey",hidefocus:"hideFocus",usemap:"useMap",maxlength:"maxLength",readonly:"readOnly",contenteditable:"contentEditable"},g={enctype:"encoding",onscroll:"DOMMouseScroll"},h=function(a){for(var b,c={};a.length;)b=a.shift(),c["on"+b.toLowerCase()]=b;return c}("blur,change,click,dblclick,error,focus,keydown,keypress,keyup,load,mousedown,mouseenter,mouseleave,mousemove,mouseout,mouseover,mouseup,resize,scroll,select,submit,unload".split(","));b.exports=e},{}],13:[function(a,b,c){"use strict";function d(a,b){b&&(a.tagName&&"style"===a.tagName.toLowerCase()&&document.createStyleSheet?a.cssText=b:a.canHaveChildren!==!1&&a.appendChild(b))}b.exports=d},{}],14:[function(a,b,c){"use strict";function d(a){var b=document.createElement("div");if(b.innerHTML=a,e(b),1===b.childNodes.length)return b.firstChild;for(var c=document.createDocumentFragment?document.createDocumentFragment():document.createElement("");b.firstChild;)c.appendChild(b.firstChild);return c}var e=a("./jsonml-trim-whitespace");b.exports=d},{"./jsonml-trim-whitespace":16}],15:[function(a,b,c){"use strict";function d(a){return a instanceof Array&&"string"==typeof a[0]}function e(a,b,c){return document.createTextNode("["+a+"-"+c+"]")}var f,g,h=a("./jsonml-hydrate"),i=a("./w3"),j=a("./jsonml-append-child"),k=a("./jsonml-add-attributes"),l=a("./jsonml-trim-whitespace"),m=null;f=function(a,b,c){for(var d=1;d0?Math.round(a):1}var d;b.hscale=1,b.hscale0&&(b.hscale=b.hscale0),a&&a.config&&a.config.hscale&&(d=Math.round(c(a.config.hscale)),d>0&&(d>100&&(d=100),b.hscale=d)),b.yh0=0,b.yh1=0,b.head=a.head,b.xmin_cfg=0,b.xmax_cfg=1e12,a&&a.config&&a.config.hbounds&&2==a.config.hbounds.length&&(a.config.hbounds[0]=Math.floor(a.config.hbounds[0]),a.config.hbounds[1]=Math.ceil(a.config.hbounds[1]),a.config.hbounds[0]"===i&&(k=!1,i=m.shift()),d=1;"."===m[0]||"|"===m[0];)m.shift(),d+=1;n=k?n.concat(f(h+i,0,d-c.period)):n.concat(f(h+i,b,d))}for(j=0;j0?(l=g(o).length,1==g([o[o.length-1]]).length&&1==g([n[0]]).length&&(l-=1)):l=0,[n,l]}var e=a("./gen-first-wave-brick"),f=a("./gen-wave-brick"),g=a("./find-lane-markers");b.exports=d},{"./find-lane-markers":5,"./gen-first-wave-brick":7,"./gen-wave-brick":8}],20:[function(a,b,c){"use strict";function d(a,b){var c;return c=a.data,void 0===c?null:("string"==typeof c&&(c=c.split(" ")),c=c.slice(b))}function e(a,b){var c,e,g,h,i,j=[],k=[];for(c in a)e=a[c],b.period=e.period?e.period:1,b.phase=(e.phase?2*e.phase:0)+b.xmin_cfg,j.push([]),k[0]=e.name||" ",k[1]=(e.phase||0)+b.xmin_cfg/2,e.wave?(h=f(e.wave,b.period*b.hscale-1,b),g=h[0],i=h[1]):g=null,j[j.length-1][0]=k.slice(0),j[j.length-1][1]=g,j[j.length-1][2]=d(e,i);return j}var f=a("./parse-wave-lane");b.exports=e},{"./parse-wave-lane":19}],21:[function(a,b,c){"use strict";function d(){var a,b,c,d;for(c=0,a=document.querySelectorAll("*"),b=0;bdiv.wavedromMenu{position:fixed;border:solid 1pt#CCCCCC;background-color:white;box-shadow:0px 10px 20px #808080;cursor:default;margin:0px;padding:0px;}div.wavedromMenu>ul{margin:0px;padding:0px;}div.wavedromMenu>ul>li{padding:2px 10px;list-style:none;}div.wavedromMenu>ul>li:hover{background-color:#b5d5ff;}'}var e=a("./eva"),f=a("./append-save-as-dialog"),g=a("./render-wave-form");b.exports=d},{"./append-save-as-dialog":1,"./eva":4,"./render-wave-form":28}],22:[function(a,b,c){"use strict";function d(a,b){var c,e,f={},g={x:10};for("string"!=typeof a[0]&&"number"!=typeof a[0]||(e=a[0],g.x=25),b.x+=g.x,c=0;c":x.setAttribute("style","marker-end:url(#arrowhead);stroke:#0041c4;stroke-width:1;fill:none");break;case"~>":x.setAttribute("style","marker-end:url(#arrowhead);stroke:#0041c4;stroke-width:1;fill:none"),x.setAttribute("d","M "+r.x+","+r.y+" c "+.7*t+", 0 "+.3*t+", "+u+" "+t+", "+u);break;case"-~>":x.setAttribute("style","marker-end:url(#arrowhead);stroke:#0041c4;stroke-width:1;fill:none"),x.setAttribute("d","M "+r.x+","+r.y+" c "+.7*t+", 0 "+t+", "+u+" "+t+", "+u),A.label&&(v=r.x+.75*(s.x-r.x));break;case"~->":x.setAttribute("style","marker-end:url(#arrowhead);stroke:#0041c4;stroke-width:1;fill:none"),x.setAttribute("d","M "+r.x+","+r.y+" c 0, 0 "+.3*t+", "+u+" "+t+", "+u),A.label&&(v=r.x+.25*(s.x-r.x));break;case"-|>":x.setAttribute("style","marker-end:url(#arrowhead);stroke:#0041c4;stroke-width:1;fill:none"),x.setAttribute("d","m "+r.x+","+r.y+" "+t+",0 0,"+u),A.label&&(v=s.x);break;case"|->":x.setAttribute("style","marker-end:url(#arrowhead);stroke:#0041c4;stroke-width:1;fill:none"),x.setAttribute("d","m "+r.x+","+r.y+" 0,"+u+" "+t+",0"),A.label&&(v=r.x);break;case"-|->":x.setAttribute("style","marker-end:url(#arrowhead);stroke:#0041c4;stroke-width:1;fill:none"),x.setAttribute("d","m "+r.x+","+r.y+" "+t/2+",0 0,"+u+" "+t/2+",0");break;case"<->":x.setAttribute("style","marker-end:url(#arrowhead);marker-start:url(#arrowtail);stroke:#0041c4;stroke-width:1;fill:none");break;case"<~>":x.setAttribute("style","marker-end:url(#arrowhead);marker-start:url(#arrowtail);stroke:#0041c4;stroke-width:1;fill:none"),x.setAttribute("d","M "+r.x+","+r.y+" c "+.7*t+", 0 "+.3*t+", "+u+" "+t+", "+u);break;case"<-~>":x.setAttribute("style","marker-end:url(#arrowhead);marker-start:url(#arrowtail);stroke:#0041c4;stroke-width:1;fill:none"),x.setAttribute("d","M "+r.x+","+r.y+" c "+.7*t+", 0 "+t+", "+u+" "+t+", "+u),A.label&&(v=r.x+.75*(s.x-r.x));break;case"<-|>":x.setAttribute("style","marker-end:url(#arrowhead);marker-start:url(#arrowtail);stroke:#0041c4;stroke-width:1;fill:none"),x.setAttribute("d","m "+r.x+","+r.y+" "+t+",0 0,"+u),A.label&&(v=s.x);break;case"<-|->":x.setAttribute("style","marker-end:url(#arrowhead);marker-start:url(#arrowtail);stroke:#0041c4;stroke-width:1;fill:none"),x.setAttribute("d","m "+r.x+","+r.y+" "+t/2+",0 0,"+u+" "+t/2+",0");break;default:x.setAttribute("style","fill:none;stroke:#F00;stroke-width:1")}A.label&&(p.setAttribute("x",v),p.setAttribute("y",w+3),q.setAttribute("x",v-y/2),q.setAttribute("y",w-5))}for(l in B)l===l.toLowerCase()&&B[l].x>0&&(q=f(["rect",{y:B[l].y-4,height:8,style:"fill:#FFF;"}]),p=f(["text",{style:"font-size:8px;",x:B[l].x,y:B[l].y+2,"text-anchor":"middle"},l+""]),j.insertBefore(q,null),j.insertBefore(p,null),y=p.getBBox().width+2,q.setAttribute("x",B[l].x-y/2),q.setAttribute("width",y))}}var e=a("tspan"),f=a("./create-element"),g=a("./w3");b.exports=d},{"./create-element":2,"./w3":30,tspan:33}],24:[function(a,b,c){"use strict";function d(a,b){var c,e,f;for(b.xmax=Math.max(b.xmax,b.x),c=b.y,f=a.length,e=1;e"===m&&(l=!1,m=n.shift()),j+=l?1:2*d.period,"|"===m&&(i=document.createElementNS(e.svg,"use"),i.setAttributeNS(e.xlink,"xlink:href","#gap"),i.setAttribute("transform","translate("+d.xs*((j-(l?0:d.period))*d.hscale-d.phase)+")"),h.insertBefore(i,null))}}var e=a("./w3");b.exports=d},{"./w3":30}],26:[function(a,b,c){"use strict";function d(a,b,c){var d,f,g,h=["g"];return a.forEach(function(a,i){h.push(["path",{id:"group_"+i+"_"+b,d:"m "+(a.x+.5)+","+(a.y*c.yo+3.5+c.yh0+c.yh1)+" c -3,0 -5,2 -5,5 l 0,"+(a.height*c.yo-16)+" c 0,3 2,5 5,5",style:"stroke:#0041c4;stroke-width:1;fill:none"}]),void 0!==a.name&&(d=a.x-10,f=c.yo*(a.y+a.height/2)+c.yh0+c.yh1,g=e.parse(a.name),g.unshift("text",{"text-anchor":"middle",class:"info","xml:space":"preserve"}),h.push(["g",{transform:"translate("+d+","+f+")"},["g",{transform:"rotate(270)"},g]]))}),h}var e=a("tspan");b.exports=d},{tspan:33}],27:[function(a,b,c){"use strict";function d(a,b,c,d){function g(a,b,c){var d;a[b]&&a[b].text&&(d=e.parse(a[b].text),d.unshift("text",{x:a.xmax*a.xs/2,y:c,"text-anchor":"middle",fill:"#000","xml:space":"preserve"}),d=f(d),j.insertBefore(d,null))}function h(a,b,c,d,g,h,k){var l,m,n,o,p=1,q=0,r=[];if(void 0!==a[b]&&void 0!==a[b][c]){if(n=a[b][c],"string"==typeof n)n=n.split(" ");else if("number"==typeof n||"boolean"==typeof n)for(m=Number(n),n=[],i=0;i0?Math.ceil(2*q)-2*q:-2*q,m=f(["g",{id:"wavelane_draw_"+j+"_"+c,transform:"translate("+q*d.xs+", 0)"}]),l.insertBefore(m,null),b[j][1])){for(i=0;is&&(s=b[j][1].length)}return d.xmax=Math.min(s,d.xmax_cfg-d.xmin_cfg),d.xg=t+20,u}var e=a("tspan"),f=a("./create-element"),g=a("./w3"),h=a("./find-lane-markers");b.exports=d},{"./create-element":2,"./find-lane-markers":5,"./w3":30,tspan:33}],30:[function(a,b,c){"use strict";b.exports={svg:"http://www.w3.org/2000/svg",xlink:"http://www.w3.org/1999/xlink",xmlns:"http://www.w3.org/XML/1998/namespace"}},{}],31:[function(a,b,c){"use strict";window.WaveDrom=window.WaveDrom||{};var d=a("./");window.WaveDrom.ProcessAll=d.processAll,window.WaveDrom.RenderWaveForm=d.renderWaveForm,window.WaveDrom.EditorRefresh=d.editorRefresh,window.WaveDrom.eva=d.eva},{"./":9}],32:[function(a,b,c){"use strict";b.exports=window.WaveSkin},{}],33:[function(a,b,c){"use strict";function d(a,b){b.add&&b.add.split(";").forEach(function(b){var c=b.split(" ");a[c[0]][c[1]]=!0}),b.del&&b.del.split(";").forEach(function(b){var c=b.split(" ");delete a[c[0]][c[1]]})}function e(a){return Object.keys(a).reduce(function(b,c){var d=Object.keys(a[c]);return d.length>0&&(b[c]=d.join(" ")),b},{})}function f(a){var b,c,f,i,j;if(void 0===a)return[];if("number"==typeof a)return[a+""];if("string"!=typeof a)return[a];for(c=[],b={"text-decoration":{},"font-weight":{},"font-style":{},"baseline-shift":{},"font-size":{},"font-family":{}};;){if(f=a.search(g),f===-1)return c.push(["tspan",e(b),a]),c;if(f>0&&(j=a.slice(0,f),c.push(["tspan",e(b),j])),i=a.match(g)[0],d(b,h[i]),a=a.slice(f+i.length),0===a.length)return c}}var g=/||||||||<\/o>|<\/ins>|<\/s>|<\/sub>|<\/sup>|<\/b>|<\/i>|<\/tt>/,h={"":{add:"text-decoration overline"},"":{del:"text-decoration overline"},"":{add:"text-decoration underline"},"":{del:"text-decoration underline"},"":{add:"text-decoration line-through"},"":{del:"text-decoration line-through"},"":{add:"font-weight bold"},"":{del:"font-weight bold"},"":{add:"font-style italic"},"":{del:"font-style italic"},"":{add:"baseline-shift sub;font-size .7em"},"":{del:"baseline-shift sub;font-size .7em"},"":{add:"baseline-shift super;font-size .7em"},"":{del:"baseline-shift super;font-size .7em"},"":{add:"font-family monospace"},"":{del:"font-family monospace"}};c.parse=f},{}]},{},[31]); \ No newline at end of file diff -r 70aad9a1272b -r 4fa6621fec0f content/js/skins/default.js --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/content/js/skins/default.js Sun Sep 18 22:40:28 2016 +0200 @@ -0,0 +1,1 @@ +var WaveSkin=WaveSkin||{};WaveSkin.default=["svg",{"id":"svg","xmlns":"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink","height":"0"},["style",{"type":"text/css"},"text{font-size:11pt;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;fill-opacity:1;font-family:Helvetica}.muted{fill:#aaa}.warning{fill:#f6b900}.error{fill:#f60000}.info{fill:#0041c4}.success{fill:#00ab00}.h1{font-size:33pt;font-weight:bold}.h2{font-size:27pt;font-weight:bold}.h3{font-size:20pt;font-weight:bold}.h4{font-size:14pt;font-weight:bold}.h5{font-size:11pt;font-weight:bold}.h6{font-size:8pt;font-weight:bold}.s1{fill:none;stroke:#000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none}.s2{fill:none;stroke:#000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none}.s3{color:#000;fill:none;stroke:#000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 3;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate}.s4{color:#000;fill:none;stroke:#000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible}.s5{fill:#fff;stroke:none}.s6{color:#000;fill:#ffffb4;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate}.s7{color:#000;fill:#ffe0b9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate}.s8{color:#000;fill:#b9e0ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate}.s9{fill:#000;fill-opacity:1;stroke:none}.s10{color:#000;fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate}.s11{fill:#0041c4;fill-opacity:1;stroke:none}.s12{fill:none;stroke:#0041c4;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none}"],["defs",["g",{"id":"socket"},["rect",{"y":"15","x":"6","height":"20","width":"20"}]],["g",{"id":"pclk"},["path",{"d":"M0,20 0,0 20,0","class":"s1"}]],["g",{"id":"nclk"},["path",{"d":"m0,0 0,20 20,0","class":"s1"}]],["g",{"id":"000"},["path",{"d":"m0,20 20,0","class":"s1"}]],["g",{"id":"0m0"},["path",{"d":"m0,20 3,0 3,-10 3,10 11,0","class":"s1"}]],["g",{"id":"0m1"},["path",{"d":"M0,20 3,20 9,0 20,0","class":"s1"}]],["g",{"id":"0mx"},["path",{"d":"M3,20 9,0 20,0","class":"s1"}],["path",{"d":"m20,15 -5,5","class":"s2"}],["path",{"d":"M20,10 10,20","class":"s2"}],["path",{"d":"M20,5 5,20","class":"s2"}],["path",{"d":"M20,0 4,16","class":"s2"}],["path",{"d":"M15,0 6,9","class":"s2"}],["path",{"d":"M10,0 9,1","class":"s2"}],["path",{"d":"m0,20 20,0","class":"s1"}]],["g",{"id":"0md"},["path",{"d":"m8,20 10,0","class":"s3"}],["path",{"d":"m0,20 5,0","class":"s1"}]],["g",{"id":"0mu"},["path",{"d":"m0,20 3,0 C 7,10 10.107603,0 20,0","class":"s1"}]],["g",{"id":"0mz"},["path",{"d":"m0,20 3,0 C 10,10 15,10 20,10","class":"s1"}]],["g",{"id":"111"},["path",{"d":"M0,0 20,0","class":"s1"}]],["g",{"id":"1m0"},["path",{"d":"m0,0 3,0 6,20 11,0","class":"s1"}]],["g",{"id":"1m1"},["path",{"d":"M0,0 3,0 6,10 9,0 20,0","class":"s1"}]],["g",{"id":"1mx"},["path",{"d":"m3,0 6,20 11,0","class":"s1"}],["path",{"d":"M0,0 20,0","class":"s1"}],["path",{"d":"m20,15 -5,5","class":"s2"}],["path",{"d":"M20,10 10,20","class":"s2"}],["path",{"d":"M20,5 8,17","class":"s2"}],["path",{"d":"M20,0 7,13","class":"s2"}],["path",{"d":"M15,0 6,9","class":"s2"}],["path",{"d":"M10,0 5,5","class":"s2"}],["path",{"d":"M3.5,1.5 5,0","class":"s2"}]],["g",{"id":"1md"},["path",{"d":"m0,0 3,0 c 4,10 7,20 17,20","class":"s1"}]],["g",{"id":"1mu"},["path",{"d":"M0,0 5,0","class":"s1"}],["path",{"d":"M8,0 18,0","class":"s3"}]],["g",{"id":"1mz"},["path",{"d":"m0,0 3,0 c 7,10 12,10 17,10","class":"s1"}]],["g",{"id":"xxx"},["path",{"d":"m0,20 20,0","class":"s1"}],["path",{"d":"M0,0 20,0","class":"s1"}],["path",{"d":"M0,5 5,0","class":"s2"}],["path",{"d":"M0,10 10,0","class":"s2"}],["path",{"d":"M0,15 15,0","class":"s2"}],["path",{"d":"M0,20 20,0","class":"s2"}],["path",{"d":"M5,20 20,5","class":"s2"}],["path",{"d":"M10,20 20,10","class":"s2"}],["path",{"d":"m15,20 5,-5","class":"s2"}]],["g",{"id":"xm0"},["path",{"d":"M0,0 4,0 9,20","class":"s1"}],["path",{"d":"m0,20 20,0","class":"s1"}],["path",{"d":"M0,5 4,1","class":"s2"}],["path",{"d":"M0,10 5,5","class":"s2"}],["path",{"d":"M0,15 6,9","class":"s2"}],["path",{"d":"M0,20 7,13","class":"s2"}],["path",{"d":"M5,20 8,17","class":"s2"}]],["g",{"id":"xm1"},["path",{"d":"M0,0 20,0","class":"s1"}],["path",{"d":"M0,20 4,20 9,0","class":"s1"}],["path",{"d":"M0,5 5,0","class":"s2"}],["path",{"d":"M0,10 9,1","class":"s2"}],["path",{"d":"M0,15 7,8","class":"s2"}],["path",{"d":"M0,20 5,15","class":"s2"}]],["g",{"id":"xmx"},["path",{"d":"m0,20 20,0","class":"s1"}],["path",{"d":"M0,0 20,0","class":"s1"}],["path",{"d":"M0,5 5,0","class":"s2"}],["path",{"d":"M0,10 10,0","class":"s2"}],["path",{"d":"M0,15 15,0","class":"s2"}],["path",{"d":"M0,20 20,0","class":"s2"}],["path",{"d":"M5,20 20,5","class":"s2"}],["path",{"d":"M10,20 20,10","class":"s2"}],["path",{"d":"m15,20 5,-5","class":"s2"}]],["g",{"id":"xmd"},["path",{"d":"m0,0 4,0 c 3,10 6,20 16,20","class":"s1"}],["path",{"d":"m0,20 20,0","class":"s1"}],["path",{"d":"M0,5 4,1","class":"s2"}],["path",{"d":"M0,10 5.5,4.5","class":"s2"}],["path",{"d":"M0,15 6.5,8.5","class":"s2"}],["path",{"d":"M0,20 8,12","class":"s2"}],["path",{"d":"m5,20 5,-5","class":"s2"}],["path",{"d":"m10,20 2.5,-2.5","class":"s2"}]],["g",{"id":"xmu"},["path",{"d":"M0,0 20,0","class":"s1"}],["path",{"d":"m0,20 4,0 C 7,10 10,0 20,0","class":"s1"}],["path",{"d":"M0,5 5,0","class":"s2"}],["path",{"d":"M0,10 10,0","class":"s2"}],["path",{"d":"M0,15 10,5","class":"s2"}],["path",{"d":"M0,20 6,14","class":"s2"}]],["g",{"id":"xmz"},["path",{"d":"m0,0 4,0 c 6,10 11,10 16,10","class":"s1"}],["path",{"d":"m0,20 4,0 C 10,10 15,10 20,10","class":"s1"}],["path",{"d":"M0,5 4.5,0.5","class":"s2"}],["path",{"d":"M0,10 6.5,3.5","class":"s2"}],["path",{"d":"M0,15 8.5,6.5","class":"s2"}],["path",{"d":"M0,20 11.5,8.5","class":"s2"}]],["g",{"id":"ddd"},["path",{"d":"m0,20 20,0","class":"s3"}]],["g",{"id":"dm0"},["path",{"d":"m0,20 10,0","class":"s3"}],["path",{"d":"m12,20 8,0","class":"s1"}]],["g",{"id":"dm1"},["path",{"d":"M0,20 3,20 9,0 20,0","class":"s1"}]],["g",{"id":"dmx"},["path",{"d":"M3,20 9,0 20,0","class":"s1"}],["path",{"d":"m20,15 -5,5","class":"s2"}],["path",{"d":"M20,10 10,20","class":"s2"}],["path",{"d":"M20,5 5,20","class":"s2"}],["path",{"d":"M20,0 4,16","class":"s2"}],["path",{"d":"M15,0 6,9","class":"s2"}],["path",{"d":"M10,0 9,1","class":"s2"}],["path",{"d":"m0,20 20,0","class":"s1"}]],["g",{"id":"dmd"},["path",{"d":"m0,20 20,0","class":"s3"}]],["g",{"id":"dmu"},["path",{"d":"m0,20 3,0 C 7,10 10.107603,0 20,0","class":"s1"}]],["g",{"id":"dmz"},["path",{"d":"m0,20 3,0 C 10,10 15,10 20,10","class":"s1"}]],["g",{"id":"uuu"},["path",{"d":"M0,0 20,0","class":"s3"}]],["g",{"id":"um0"},["path",{"d":"m0,0 3,0 6,20 11,0","class":"s1"}]],["g",{"id":"um1"},["path",{"d":"M0,0 10,0","class":"s3"}],["path",{"d":"m12,0 8,0","class":"s1"}]],["g",{"id":"umx"},["path",{"d":"m3,0 6,20 11,0","class":"s1"}],["path",{"d":"M0,0 20,0","class":"s1"}],["path",{"d":"m20,15 -5,5","class":"s2"}],["path",{"d":"M20,10 10,20","class":"s2"}],["path",{"d":"M20,5 8,17","class":"s2"}],["path",{"d":"M20,0 7,13","class":"s2"}],["path",{"d":"M15,0 6,9","class":"s2"}],["path",{"d":"M10,0 5,5","class":"s2"}],["path",{"d":"M3.5,1.5 5,0","class":"s2"}]],["g",{"id":"umd"},["path",{"d":"m0,0 3,0 c 4,10 7,20 17,20","class":"s1"}]],["g",{"id":"umu"},["path",{"d":"M0,0 20,0","class":"s3"}]],["g",{"id":"umz"},["path",{"d":"m0,0 3,0 c 7,10 12,10 17,10","class":"s4"}]],["g",{"id":"zzz"},["path",{"d":"m0,10 20,0","class":"s1"}]],["g",{"id":"zm0"},["path",{"d":"m0,10 6,0 3,10 11,0","class":"s1"}]],["g",{"id":"zm1"},["path",{"d":"M0,10 6,10 9,0 20,0","class":"s1"}]],["g",{"id":"zmx"},["path",{"d":"m6,10 3,10 11,0","class":"s1"}],["path",{"d":"M0,10 6,10 9,0 20,0","class":"s1"}],["path",{"d":"m20,15 -5,5","class":"s2"}],["path",{"d":"M20,10 10,20","class":"s2"}],["path",{"d":"M20,5 8,17","class":"s2"}],["path",{"d":"M20,0 7,13","class":"s2"}],["path",{"d":"M15,0 6.5,8.5","class":"s2"}],["path",{"d":"M10,0 9,1","class":"s2"}]],["g",{"id":"zmd"},["path",{"d":"m0,10 7,0 c 3,5 8,10 13,10","class":"s1"}]],["g",{"id":"zmu"},["path",{"d":"m0,10 7,0 C 10,5 15,0 20,0","class":"s1"}]],["g",{"id":"zmz"},["path",{"d":"m0,10 20,0","class":"s1"}]],["g",{"id":"gap"},["path",{"d":"m7,-2 -4,0 c -5,0 -5,24 -10,24 l 4,0 C 2,22 2,-2 7,-2 z","class":"s5"}],["path",{"d":"M-7,22 C -2,22 -2,-2 3,-2","class":"s1"}],["path",{"d":"M-3,22 C 2,22 2,-2 7,-2","class":"s1"}]],["g",{"id":"0mv-3"},["path",{"d":"M9,0 20,0 20,20 3,20 z","class":"s6"}],["path",{"d":"M3,20 9,0 20,0","class":"s1"}],["path",{"d":"m0,20 20,0","class":"s1"}]],["g",{"id":"1mv-3"},["path",{"d":"M2.875,0 20,0 20,20 9,20 z","class":"s6"}],["path",{"d":"m3,0 6,20 11,0","class":"s1"}],["path",{"d":"M0,0 20,0","class":"s1"}]],["g",{"id":"xmv-3"},["path",{"d":"M9,0 20,0 20,20 9,20 6,10 z","class":"s6"}],["path",{"d":"M0,20 3,20 9,0 20,0","class":"s1"}],["path",{"d":"m0,0 3,0 6,20 11,0","class":"s1"}],["path",{"d":"M0,5 3.5,1.5","class":"s2"}],["path",{"d":"M0,10 4.5,5.5","class":"s2"}],["path",{"d":"M0,15 6,9","class":"s2"}],["path",{"d":"M0,20 4,16","class":"s2"}]],["g",{"id":"dmv-3"},["path",{"d":"M9,0 20,0 20,20 3,20 z","class":"s6"}],["path",{"d":"M3,20 9,0 20,0","class":"s1"}],["path",{"d":"m0,20 20,0","class":"s1"}]],["g",{"id":"umv-3"},["path",{"d":"M3,0 20,0 20,20 9,20 z","class":"s6"}],["path",{"d":"m3,0 6,20 11,0","class":"s1"}],["path",{"d":"M0,0 20,0","class":"s1"}]],["g",{"id":"zmv-3"},["path",{"d":"M9,0 20,0 20,20 9,20 6,10 z","class":"s6"}],["path",{"d":"m6,10 3,10 11,0","class":"s1"}],["path",{"d":"M0,10 6,10 9,0 20,0","class":"s1"}]],["g",{"id":"vvv-3"},["path",{"d":"M20,20 0,20 0,0 20,0","class":"s6"}],["path",{"d":"m0,20 20,0","class":"s1"}],["path",{"d":"M0,0 20,0","class":"s1"}]],["g",{"id":"vm0-3"},["path",{"d":"M0,20 0,0 3,0 9,20","class":"s6"}],["path",{"d":"M0,0 3,0 9,20","class":"s1"}],["path",{"d":"m0,20 20,0","class":"s1"}]],["g",{"id":"vm1-3"},["path",{"d":"M0,0 0,20 3,20 9,0","class":"s6"}],["path",{"d":"M0,0 20,0","class":"s1"}],["path",{"d":"M0,20 3,20 9,0","class":"s1"}]],["g",{"id":"vmx-3"},["path",{"d":"M0,0 0,20 3,20 6,10 3,0","class":"s6"}],["path",{"d":"m0,0 3,0 6,20 11,0","class":"s1"}],["path",{"d":"M0,20 3,20 9,0 20,0","class":"s1"}],["path",{"d":"m20,15 -5,5","class":"s2"}],["path",{"d":"M20,10 10,20","class":"s2"}],["path",{"d":"M20,5 8,17","class":"s2"}],["path",{"d":"M20,0 7,13","class":"s2"}],["path",{"d":"M15,0 7,8","class":"s2"}],["path",{"d":"M10,0 9,1","class":"s2"}]],["g",{"id":"vmd-3"},["path",{"d":"m0,0 0,20 20,0 C 10,20 7,10 3,0","class":"s6"}],["path",{"d":"m0,0 3,0 c 4,10 7,20 17,20","class":"s1"}],["path",{"d":"m0,20 20,0","class":"s1"}]],["g",{"id":"vmu-3"},["path",{"d":"m0,0 0,20 3,0 C 7,10 10,0 20,0","class":"s6"}],["path",{"d":"m0,20 3,0 C 7,10 10,0 20,0","class":"s1"}],["path",{"d":"M0,0 20,0","class":"s1"}]],["g",{"id":"vmz-3"},["path",{"d":"M0,0 3,0 C 10,10 15,10 20,10 15,10 10,10 3,20 L 0,20","class":"s6"}],["path",{"d":"m0,0 3,0 c 7,10 12,10 17,10","class":"s1"}],["path",{"d":"m0,20 3,0 C 10,10 15,10 20,10","class":"s1"}]],["g",{"id":"vmv-3-3"},["path",{"d":"M9,0 20,0 20,20 9,20 6,10 z","class":"s6"}],["path",{"d":"M3,0 0,0 0,20 3,20 6,10 z","class":"s6"}],["path",{"d":"m0,0 3,0 6,20 11,0","class":"s1"}],["path",{"d":"M0,20 3,20 9,0 20,0","class":"s1"}]],["g",{"id":"vmv-3-4"},["path",{"d":"M9,0 20,0 20,20 9,20 6,10 z","class":"s7"}],["path",{"d":"M3,0 0,0 0,20 3,20 6,10 z","class":"s6"}],["path",{"d":"m0,0 3,0 6,20 11,0","class":"s1"}],["path",{"d":"M0,20 3,20 9,0 20,0","class":"s1"}]],["g",{"id":"vmv-3-5"},["path",{"d":"M9,0 20,0 20,20 9,20 6,10 z","class":"s8"}],["path",{"d":"M3,0 0,0 0,20 3,20 6,10 z","class":"s6"}],["path",{"d":"m0,0 3,0 6,20 11,0","class":"s1"}],["path",{"d":"M0,20 3,20 9,0 20,0","class":"s1"}]],["g",{"id":"vmv-4-3"},["path",{"d":"M9,0 20,0 20,20 9,20 6,10 z","class":"s6"}],["path",{"d":"M3,0 0,0 0,20 3,20 6,10 z","class":"s7"}],["path",{"d":"m0,0 3,0 6,20 11,0","class":"s1"}],["path",{"d":"M0,20 3,20 9,0 20,0","class":"s1"}]],["g",{"id":"vmv-4-4"},["path",{"d":"M9,0 20,0 20,20 9,20 6,10 z","class":"s7"}],["path",{"d":"M3,0 0,0 0,20 3,20 6,10 z","class":"s7"}],["path",{"d":"m0,0 3,0 6,20 11,0","class":"s1"}],["path",{"d":"M0,20 3,20 9,0 20,0","class":"s1"}]],["g",{"id":"vmv-4-5"},["path",{"d":"M9,0 20,0 20,20 9,20 6,10 z","class":"s8"}],["path",{"d":"M3,0 0,0 0,20 3,20 6,10 z","class":"s7"}],["path",{"d":"m0,0 3,0 6,20 11,0","class":"s1"}],["path",{"d":"M0,20 3,20 9,0 20,0","class":"s1"}]],["g",{"id":"vmv-5-3"},["path",{"d":"M9,0 20,0 20,20 9,20 6,10 z","class":"s6"}],["path",{"d":"M3,0 0,0 0,20 3,20 6,10 z","class":"s8"}],["path",{"d":"m0,0 3,0 6,20 11,0","class":"s1"}],["path",{"d":"M0,20 3,20 9,0 20,0","class":"s1"}]],["g",{"id":"vmv-5-4"},["path",{"d":"M9,0 20,0 20,20 9,20 6,10 z","class":"s7"}],["path",{"d":"M3,0 0,0 0,20 3,20 6,10 z","class":"s8"}],["path",{"d":"m0,0 3,0 6,20 11,0","class":"s1"}],["path",{"d":"M0,20 3,20 9,0 20,0","class":"s1"}]],["g",{"id":"vmv-5-5"},["path",{"d":"M9,0 20,0 20,20 9,20 6,10 z","class":"s8"}],["path",{"d":"M3,0 0,0 0,20 3,20 6,10 z","class":"s8"}],["path",{"d":"m0,0 3,0 6,20 11,0","class":"s1"}],["path",{"d":"M0,20 3,20 9,0 20,0","class":"s1"}]],["g",{"id":"0mv-4"},["path",{"d":"M9,0 20,0 20,20 3,20 z","class":"s7"}],["path",{"d":"M3,20 9,0 20,0","class":"s1"}],["path",{"d":"m0,20 20,0","class":"s1"}]],["g",{"id":"1mv-4"},["path",{"d":"M2.875,0 20,0 20,20 9,20 z","class":"s7"}],["path",{"d":"m3,0 6,20 11,0","class":"s1"}],["path",{"d":"M0,0 20,0","class":"s1"}]],["g",{"id":"xmv-4"},["path",{"d":"M9,0 20,0 20,20 9,20 6,10 z","class":"s7"}],["path",{"d":"M0,20 3,20 9,0 20,0","class":"s1"}],["path",{"d":"m0,0 3,0 6,20 11,0","class":"s1"}],["path",{"d":"M0,5 3.5,1.5","class":"s2"}],["path",{"d":"M0,10 4.5,5.5","class":"s2"}],["path",{"d":"M0,15 6,9","class":"s2"}],["path",{"d":"M0,20 4,16","class":"s2"}]],["g",{"id":"dmv-4"},["path",{"d":"M9,0 20,0 20,20 3,20 z","class":"s7"}],["path",{"d":"M3,20 9,0 20,0","class":"s1"}],["path",{"d":"m0,20 20,0","class":"s1"}]],["g",{"id":"umv-4"},["path",{"d":"M3,0 20,0 20,20 9,20 z","class":"s7"}],["path",{"d":"m3,0 6,20 11,0","class":"s1"}],["path",{"d":"M0,0 20,0","class":"s1"}]],["g",{"id":"zmv-4"},["path",{"d":"M9,0 20,0 20,20 9,20 6,10 z","class":"s7"}],["path",{"d":"m6,10 3,10 11,0","class":"s1"}],["path",{"d":"M0,10 6,10 9,0 20,0","class":"s1"}]],["g",{"id":"0mv-5"},["path",{"d":"M9,0 20,0 20,20 3,20 z","class":"s8"}],["path",{"d":"M3,20 9,0 20,0","class":"s1"}],["path",{"d":"m0,20 20,0","class":"s1"}]],["g",{"id":"1mv-5"},["path",{"d":"M2.875,0 20,0 20,20 9,20 z","class":"s8"}],["path",{"d":"m3,0 6,20 11,0","class":"s1"}],["path",{"d":"M0,0 20,0","class":"s1"}]],["g",{"id":"xmv-5"},["path",{"d":"M9,0 20,0 20,20 9,20 6,10 z","class":"s8"}],["path",{"d":"M0,20 3,20 9,0 20,0","class":"s1"}],["path",{"d":"m0,0 3,0 6,20 11,0","class":"s1"}],["path",{"d":"M0,5 3.5,1.5","class":"s2"}],["path",{"d":"M0,10 4.5,5.5","class":"s2"}],["path",{"d":"M0,15 6,9","class":"s2"}],["path",{"d":"M0,20 4,16","class":"s2"}]],["g",{"id":"dmv-5"},["path",{"d":"M9,0 20,0 20,20 3,20 z","class":"s8"}],["path",{"d":"M3,20 9,0 20,0","class":"s1"}],["path",{"d":"m0,20 20,0","class":"s1"}]],["g",{"id":"umv-5"},["path",{"d":"M3,0 20,0 20,20 9,20 z","class":"s8"}],["path",{"d":"m3,0 6,20 11,0","class":"s1"}],["path",{"d":"M0,0 20,0","class":"s1"}]],["g",{"id":"zmv-5"},["path",{"d":"M9,0 20,0 20,20 9,20 6,10 z","class":"s8"}],["path",{"d":"m6,10 3,10 11,0","class":"s1"}],["path",{"d":"M0,10 6,10 9,0 20,0","class":"s1"}]],["g",{"id":"vvv-4"},["path",{"d":"M20,20 0,20 0,0 20,0","class":"s7"}],["path",{"d":"m0,20 20,0","class":"s1"}],["path",{"d":"M0,0 20,0","class":"s1"}]],["g",{"id":"vm0-4"},["path",{"d":"M0,20 0,0 3,0 9,20","class":"s7"}],["path",{"d":"M0,0 3,0 9,20","class":"s1"}],["path",{"d":"m0,20 20,0","class":"s1"}]],["g",{"id":"vm1-4"},["path",{"d":"M0,0 0,20 3,20 9,0","class":"s7"}],["path",{"d":"M0,0 20,0","class":"s1"}],["path",{"d":"M0,20 3,20 9,0","class":"s1"}]],["g",{"id":"vmx-4"},["path",{"d":"M0,0 0,20 3,20 6,10 3,0","class":"s7"}],["path",{"d":"m0,0 3,0 6,20 11,0","class":"s1"}],["path",{"d":"M0,20 3,20 9,0 20,0","class":"s1"}],["path",{"d":"m20,15 -5,5","class":"s2"}],["path",{"d":"M20,10 10,20","class":"s2"}],["path",{"d":"M20,5 8,17","class":"s2"}],["path",{"d":"M20,0 7,13","class":"s2"}],["path",{"d":"M15,0 7,8","class":"s2"}],["path",{"d":"M10,0 9,1","class":"s2"}]],["g",{"id":"vmd-4"},["path",{"d":"m0,0 0,20 20,0 C 10,20 7,10 3,0","class":"s7"}],["path",{"d":"m0,0 3,0 c 4,10 7,20 17,20","class":"s1"}],["path",{"d":"m0,20 20,0","class":"s1"}]],["g",{"id":"vmu-4"},["path",{"d":"m0,0 0,20 3,0 C 7,10 10,0 20,0","class":"s7"}],["path",{"d":"m0,20 3,0 C 7,10 10,0 20,0","class":"s1"}],["path",{"d":"M0,0 20,0","class":"s1"}]],["g",{"id":"vmz-4"},["path",{"d":"M0,0 3,0 C 10,10 15,10 20,10 15,10 10,10 3,20 L 0,20","class":"s7"}],["path",{"d":"m0,0 3,0 c 7,10 12,10 17,10","class":"s1"}],["path",{"d":"m0,20 3,0 C 10,10 15,10 20,10","class":"s1"}]],["g",{"id":"vvv-5"},["path",{"d":"M20,20 0,20 0,0 20,0","class":"s8"}],["path",{"d":"m0,20 20,0","class":"s1"}],["path",{"d":"M0,0 20,0","class":"s1"}]],["g",{"id":"vm0-5"},["path",{"d":"M0,20 0,0 3,0 9,20","class":"s8"}],["path",{"d":"M0,0 3,0 9,20","class":"s1"}],["path",{"d":"m0,20 20,0","class":"s1"}]],["g",{"id":"vm1-5"},["path",{"d":"M0,0 0,20 3,20 9,0","class":"s8"}],["path",{"d":"M0,0 20,0","class":"s1"}],["path",{"d":"M0,20 3,20 9,0","class":"s1"}]],["g",{"id":"vmx-5"},["path",{"d":"M0,0 0,20 3,20 6,10 3,0","class":"s8"}],["path",{"d":"m0,0 3,0 6,20 11,0","class":"s1"}],["path",{"d":"M0,20 3,20 9,0 20,0","class":"s1"}],["path",{"d":"m20,15 -5,5","class":"s2"}],["path",{"d":"M20,10 10,20","class":"s2"}],["path",{"d":"M20,5 8,17","class":"s2"}],["path",{"d":"M20,0 7,13","class":"s2"}],["path",{"d":"M15,0 7,8","class":"s2"}],["path",{"d":"M10,0 9,1","class":"s2"}]],["g",{"id":"vmd-5"},["path",{"d":"m0,0 0,20 20,0 C 10,20 7,10 3,0","class":"s8"}],["path",{"d":"m0,0 3,0 c 4,10 7,20 17,20","class":"s1"}],["path",{"d":"m0,20 20,0","class":"s1"}]],["g",{"id":"vmu-5"},["path",{"d":"m0,0 0,20 3,0 C 7,10 10,0 20,0","class":"s8"}],["path",{"d":"m0,20 3,0 C 7,10 10,0 20,0","class":"s1"}],["path",{"d":"M0,0 20,0","class":"s1"}]],["g",{"id":"vmz-5"},["path",{"d":"M0,0 3,0 C 10,10 15,10 20,10 15,10 10,10 3,20 L 0,20","class":"s8"}],["path",{"d":"m0,0 3,0 c 7,10 12,10 17,10","class":"s1"}],["path",{"d":"m0,20 3,0 C 10,10 15,10 20,10","class":"s1"}]],["g",{"id":"Pclk"},["path",{"d":"M-3,12 0,3 3,12 C 1,11 -1,11 -3,12 z","class":"s9"}],["path",{"d":"M0,20 0,0 20,0","class":"s1"}]],["g",{"id":"Nclk"},["path",{"d":"M-3,8 0,17 3,8 C 1,9 -1,9 -3,8 z","class":"s9"}],["path",{"d":"m0,0 0,20 20,0","class":"s1"}]],["g",{"id":"vvv-2"},["path",{"d":"M20,20 0,20 0,0 20,0","class":"s10"}],["path",{"d":"m0,20 20,0","class":"s1"}],["path",{"d":"M0,0 20,0","class":"s1"}]],["g",{"id":"vm0-2"},["path",{"d":"M0,20 0,0 3,0 9,20","class":"s10"}],["path",{"d":"M0,0 3,0 9,20","class":"s1"}],["path",{"d":"m0,20 20,0","class":"s1"}]],["g",{"id":"vm1-2"},["path",{"d":"M0,0 0,20 3,20 9,0","class":"s10"}],["path",{"d":"M0,0 20,0","class":"s1"}],["path",{"d":"M0,20 3,20 9,0","class":"s1"}]],["g",{"id":"vmx-2"},["path",{"d":"M0,0 0,20 3,20 6,10 3,0","class":"s10"}],["path",{"d":"m0,0 3,0 6,20 11,0","class":"s1"}],["path",{"d":"M0,20 3,20 9,0 20,0","class":"s1"}],["path",{"d":"m20,15 -5,5","class":"s2"}],["path",{"d":"M20,10 10,20","class":"s2"}],["path",{"d":"M20,5 8,17","class":"s2"}],["path",{"d":"M20,0 7,13","class":"s2"}],["path",{"d":"M15,0 7,8","class":"s2"}],["path",{"d":"M10,0 9,1","class":"s2"}]],["g",{"id":"vmd-2"},["path",{"d":"m0,0 0,20 20,0 C 10,20 7,10 3,0","class":"s10"}],["path",{"d":"m0,0 3,0 c 4,10 7,20 17,20","class":"s1"}],["path",{"d":"m0,20 20,0","class":"s1"}]],["g",{"id":"vmu-2"},["path",{"d":"m0,0 0,20 3,0 C 7,10 10,0 20,0","class":"s10"}],["path",{"d":"m0,20 3,0 C 7,10 10,0 20,0","class":"s1"}],["path",{"d":"M0,0 20,0","class":"s1"}]],["g",{"id":"vmz-2"},["path",{"d":"M0,0 3,0 C 10,10 15,10 20,10 15,10 10,10 3,20 L 0,20","class":"s10"}],["path",{"d":"m0,0 3,0 c 7,10 12,10 17,10","class":"s1"}],["path",{"d":"m0,20 3,0 C 10,10 15,10 20,10","class":"s1"}]],["g",{"id":"0mv-2"},["path",{"d":"M9,0 20,0 20,20 3,20 z","class":"s10"}],["path",{"d":"M3,20 9,0 20,0","class":"s1"}],["path",{"d":"m0,20 20,0","class":"s1"}]],["g",{"id":"1mv-2"},["path",{"d":"M2.875,0 20,0 20,20 9,20 z","class":"s10"}],["path",{"d":"m3,0 6,20 11,0","class":"s1"}],["path",{"d":"M0,0 20,0","class":"s1"}]],["g",{"id":"xmv-2"},["path",{"d":"M9,0 20,0 20,20 9,20 6,10 z","class":"s10"}],["path",{"d":"M0,20 3,20 9,0 20,0","class":"s1"}],["path",{"d":"m0,0 3,0 6,20 11,0","class":"s1"}],["path",{"d":"M0,5 3.5,1.5","class":"s2"}],["path",{"d":"M0,10 4.5,5.5","class":"s2"}],["path",{"d":"M0,15 6,9","class":"s2"}],["path",{"d":"M0,20 4,16","class":"s2"}]],["g",{"id":"dmv-2"},["path",{"d":"M9,0 20,0 20,20 3,20 z","class":"s10"}],["path",{"d":"M3,20 9,0 20,0","class":"s1"}],["path",{"d":"m0,20 20,0","class":"s1"}]],["g",{"id":"umv-2"},["path",{"d":"M3,0 20,0 20,20 9,20 z","class":"s10"}],["path",{"d":"m3,0 6,20 11,0","class":"s1"}],["path",{"d":"M0,0 20,0","class":"s1"}]],["g",{"id":"zmv-2"},["path",{"d":"M9,0 20,0 20,20 9,20 6,10 z","class":"s10"}],["path",{"d":"m6,10 3,10 11,0","class":"s1"}],["path",{"d":"M0,10 6,10 9,0 20,0","class":"s1"}]],["g",{"id":"vmv-3-2"},["path",{"d":"M9,0 20,0 20,20 9,20 6,10 z","class":"s10"}],["path",{"d":"M3,0 0,0 0,20 3,20 6,10 z","class":"s6"}],["path",{"d":"m0,0 3,0 6,20 11,0","class":"s1"}],["path",{"d":"M0,20 3,20 9,0 20,0","class":"s1"}]],["g",{"id":"vmv-4-2"},["path",{"d":"M9,0 20,0 20,20 9,20 6,10 z","class":"s10"}],["path",{"d":"M3,0 0,0 0,20 3,20 6,10 z","class":"s7"}],["path",{"d":"m0,0 3,0 6,20 11,0","class":"s1"}],["path",{"d":"M0,20 3,20 9,0 20,0","class":"s1"}]],["g",{"id":"vmv-5-2"},["path",{"d":"M9,0 20,0 20,20 9,20 6,10 z","class":"s10"}],["path",{"d":"M3,0 0,0 0,20 3,20 6,10 z","class":"s8"}],["path",{"d":"m0,0 3,0 6,20 11,0","class":"s1"}],["path",{"d":"M0,20 3,20 9,0 20,0","class":"s1"}]],["g",{"id":"vmv-2-3"},["path",{"d":"M9,0 20,0 20,20 9,20 6,10 z","class":"s6"}],["path",{"d":"M3,0 0,0 0,20 3,20 6,10 z","class":"s10"}],["path",{"d":"m0,0 3,0 6,20 11,0","class":"s1"}],["path",{"d":"M0,20 3,20 9,0 20,0","class":"s1"}]],["g",{"id":"vmv-2-4"},["path",{"d":"M9,0 20,0 20,20 9,20 6,10 z","class":"s7"}],["path",{"d":"M3,0 0,0 0,20 3,20 6,10 z","class":"s10"}],["path",{"d":"m0,0 3,0 6,20 11,0","class":"s1"}],["path",{"d":"M0,20 3,20 9,0 20,0","class":"s1"}]],["g",{"id":"vmv-2-5"},["path",{"d":"M9,0 20,0 20,20 9,20 6,10 z","class":"s8"}],["path",{"d":"M3,0 0,0 0,20 3,20 6,10 z","class":"s10"}],["path",{"d":"m0,0 3,0 6,20 11,0","class":"s1"}],["path",{"d":"M0,20 3,20 9,0 20,0","class":"s1"}]],["g",{"id":"vmv-2-2"},["path",{"d":"M9,0 20,0 20,20 9,20 6,10 z","class":"s10"}],["path",{"d":"M3,0 0,0 0,20 3,20 6,10 z","class":"s10"}],["path",{"d":"m0,0 3,0 6,20 11,0","class":"s1"}],["path",{"d":"M0,20 3,20 9,0 20,0","class":"s1"}]],["g",{"id":"arrow0"},["path",{"d":"m-12,-3 9,3 -9,3 c 1,-2 1,-4 0,-6 z","class":"s11"}],["path",{"d":"M0,0 -15,0","class":"s12"}]],["marker",{"id":"arrowhead","style":"fill:#0041c4","markerHeight":"7","markerWidth":"10","markerUnits":"strokeWidth","viewBox":"0 -4 11 8","refX":"15","refY":"0","orient":"auto"},["path",{"d":"M0 -4 11 0 0 4z"}]],["marker",{"id":"arrowtail","style":"fill:#0041c4","markerHeight":"7","markerWidth":"10","markerUnits":"strokeWidth","viewBox":"-11 -4 11 8","refX":"-15","refY":"0","orient":"auto"},["path",{"d":"M0 -4 -11 0 0 4z"}]]],["g",{"id":"waves"},["g",{"id":"lanes"}],["g",{"id":"groups"}]]]; diff -r 70aad9a1272b -r 4fa6621fec0f content/js/skins/narrow.js --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/content/js/skins/narrow.js Sun Sep 18 22:40:28 2016 +0200 @@ -0,0 +1,1 @@ +var WaveSkin=WaveSkin||{};WaveSkin.narrow=["svg",{"id":"svg","xmlns":"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink","height":"0"},["style",{"type":"text/css"},"text{font-size:11pt;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;fill-opacity:1;font-family:Helvetica}.muted{fill:#aaa}.warning{fill:#f6b900}.error{fill:#f60000}.info{fill:#0041c4}.success{fill:#00ab00}.h1{font-size:33pt;font-weight:bold}.h2{font-size:27pt;font-weight:bold}.h3{font-size:20pt;font-weight:bold}.h4{font-size:14pt;font-weight:bold}.h5{font-size:11pt;font-weight:bold}.h6{font-size:8pt;font-weight:bold}.s1{fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none}.s2{fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none}.s3{color:#000000;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 3;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate}.s4{color:#000000;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible}.s5{fill:#ffffff;stroke:none}.s6{color:#000000;fill:#ffffb4;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate}.s7{color:#000000;fill:#ffe0b9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate}.s8{color:#000000;fill:#b9e0ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate}.s9{fill:#000000;fill-opacity:1;stroke:none}.s10{color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate}"],["defs",["g",{"id":"socket"},["rect",{"y":"15","x":"4","height":"20","width":"10"}]],["g",{"id":"pclk"},["path",{"d":"M 0,20 0,0 10,0","class":"s1"}]],["g",{"id":"nclk"},["path",{"d":"m 0,0 0,20 10,0","class":"s1"}]],["g",{"id":"000"},["path",{"d":"m 0,20 10,0","class":"s1"}]],["g",{"id":"0m0"},["path",{"d":"m 0,20 1,0 3,-10 3,10 3,0","class":"s1"}]],["g",{"id":"0m1"},["path",{"d":"M 0,20 1,20 7,0 10,0","class":"s1"}]],["g",{"id":"0mx"},["path",{"d":"M 1,20 7,0 10,0","class":"s1"}],["path",{"d":"M 10,15 5,20","class":"s2"}],["path",{"d":"M 10,10 2,18","class":"s2"}],["path",{"d":"M 10,5 4,11","class":"s2"}],["path",{"d":"M 10,0 6,4","class":"s2"}],["path",{"d":"m 0,20 10,0","class":"s1"}]],["g",{"id":"0md"},["path",{"d":"m 1,20 9,0","class":"s3"}],["path",{"d":"m 0,20 1,0","class":"s1"}]],["g",{"id":"0mu"},["path",{"d":"m 0,20 1,0 C 2,13 5,0 10,0","class":"s1"}]],["g",{"id":"0mz"},["path",{"d":"m 0,20 1,0 C 3,14 7,10 10,10","class":"s1"}]],["g",{"id":"111"},["path",{"d":"M 0,0 10,0","class":"s1"}]],["g",{"id":"1m0"},["path",{"d":"m 0,0 1,0 6,20 3,0","class":"s1"}]],["g",{"id":"1m1"},["path",{"d":"M 0,0 1,0 4,10 7,0 10,0","class":"s1"}]],["g",{"id":"1mx"},["path",{"d":"m 1,0 6,20 3,0","class":"s1"}],["path",{"d":"M 0,0 10,0","class":"s1"}],["path",{"d":"M 10,15 6.5,18.5","class":"s2"}],["path",{"d":"M 10,10 5.5,14.5","class":"s2"}],["path",{"d":"M 10,5 4.5,10.5","class":"s2"}],["path",{"d":"M 10,0 3,7","class":"s2"}],["path",{"d":"M 2,3 5,0","class":"s2"}]],["g",{"id":"1md"},["path",{"d":"m 0,0 1,0 c 1,7 4,20 9,20","class":"s1"}]],["g",{"id":"1mu"},["path",{"d":"M 0,0 1,0","class":"s1"}],["path",{"d":"m 1,0 9,0","class":"s3"}]],["g",{"id":"1mz"},["path",{"d":"m 0,0 1,0 c 2,4 6,10 9,10","class":"s1"}]],["g",{"id":"xxx"},["path",{"d":"m 0,20 10,0","class":"s1"}],["path",{"d":"M 0,0 10,0","class":"s1"}],["path",{"d":"M 0,5 5,0","class":"s2"}],["path",{"d":"M 0,10 10,0","class":"s2"}],["path",{"d":"M 0,15 10,5","class":"s2"}],["path",{"d":"M 0,20 10,10","class":"s2"}],["path",{"d":"m 5,20 5,-5","class":"s2"}]],["g",{"id":"xm0"},["path",{"d":"M 0,0 1,0 7,20","class":"s1"}],["path",{"d":"m 0,20 10,0","class":"s1"}],["path",{"d":"M 0,5 2,3","class":"s2"}],["path",{"d":"M 0,10 3,7","class":"s2"}],["path",{"d":"M 0,15 4,11","class":"s2"}],["path",{"d":"M 0,20 5,15","class":"s2"}],["path",{"d":"M 5,20 6,19","class":"s2"}]],["g",{"id":"xm1"},["path",{"d":"M 0,0 10,0","class":"s1"}],["path",{"d":"M 0,20 1,20 7,0","class":"s1"}],["path",{"d":"M 0,5 5,0","class":"s2"}],["path",{"d":"M 0,10 6,4","class":"s2"}],["path",{"d":"M 0,15 3,12","class":"s2"}],["path",{"d":"M 0,20 1,19","class":"s2"}]],["g",{"id":"xmx"},["path",{"d":"m 0,20 10,0","class":"s1"}],["path",{"d":"M 0,0 10,0","class":"s1"}],["path",{"d":"M 0,5 5,0","class":"s2"}],["path",{"d":"M 0,10 10,0","class":"s2"}],["path",{"d":"M 0,15 10,5","class":"s2"}],["path",{"d":"M 0,20 10,10","class":"s2"}],["path",{"d":"m 5,20 5,-5","class":"s2"}]],["g",{"id":"xmd"},["path",{"d":"m 0,0 1,0 c 1,7 4,20 9,20","class":"s1"}],["path",{"d":"m 0,20 10,0","class":"s1"}],["path",{"d":"M 0,5 1.5,3.5","class":"s2"}],["path",{"d":"M 0,10 2.5,7.5","class":"s2"}],["path",{"d":"M 0,15 3.5,11.5","class":"s2"}],["path",{"d":"M 0,20 5,15","class":"s2"}],["path",{"d":"M 5,20 7,18","class":"s2"}]],["g",{"id":"xmu"},["path",{"d":"M 0,0 10,0","class":"s1"}],["path",{"d":"m 0,20 1,0 C 2,13 5,0 10,0","class":"s1"}],["path",{"d":"M 0,5 5,0","class":"s2"}],["path",{"d":"M 0,10 5,5","class":"s2"}],["path",{"d":"M 0,15 2,13","class":"s2"}],["path",{"d":"M 0,20 1,19","class":"s2"}]],["g",{"id":"xmz"},["path",{"d":"m 0,0 1,0 c 2,6 6,10 9,10","class":"s1"}],["path",{"d":"m 0,20 1,0 C 3,14 7,10 10,10","class":"s1"}],["path",{"d":"M 0,5 2,3","class":"s2"}],["path",{"d":"M 0,10 4,6","class":"s2"}],["path",{"d":"m 0,15.5 6,-7","class":"s2"}],["path",{"d":"M 0,20 1,19","class":"s2"}]],["g",{"id":"ddd"},["path",{"d":"m 0,20 10,0","class":"s3"}]],["g",{"id":"dm0"},["path",{"d":"m 0,20 7,0","class":"s3"}],["path",{"d":"m 7,20 3,0","class":"s1"}]],["g",{"id":"dm1"},["path",{"d":"M 0,20 1,20 7,0 10,0","class":"s1"}]],["g",{"id":"dmx"},["path",{"d":"M 1,20 7,0 10,0","class":"s1"}],["path",{"d":"M 10,15 5,20","class":"s2"}],["path",{"d":"M 10,10 1.5,18.5","class":"s2"}],["path",{"d":"M 10,5 4,11","class":"s2"}],["path",{"d":"M 10,0 6,4","class":"s2"}],["path",{"d":"m 0,20 10,0","class":"s1"}]],["g",{"id":"dmd"},["path",{"d":"m 0,20 10,0","class":"s3"}]],["g",{"id":"dmu"},["path",{"d":"m 0,20 1,0 C 2,13 5,0 10,0","class":"s1"}]],["g",{"id":"dmz"},["path",{"d":"m 0,20 1,0 C 3,14 7,10 10,10","class":"s1"}]],["g",{"id":"uuu"},["path",{"d":"M 0,0 10,0","class":"s3"}]],["g",{"id":"um0"},["path",{"d":"m 0,0 1,0 6,20 3,0","class":"s1"}]],["g",{"id":"um1"},["path",{"d":"M 0,0 7,0","class":"s3"}],["path",{"d":"m 7,0 3,0","class":"s1"}]],["g",{"id":"umx"},["path",{"d":"M 1.4771574,0 7,20 l 3,0","class":"s1"}],["path",{"d":"M 0,0 10,0","class":"s1"}],["path",{"d":"M 10,15 6.5,18.5","class":"s2"}],["path",{"d":"M 10,10 5.5,14.5","class":"s2"}],["path",{"d":"M 10,5 4.5,10.5","class":"s2"}],["path",{"d":"M 10,0 3.5,6.5","class":"s2"}],["path",{"d":"M 2.463621,2.536379 5,0","class":"s2"}]],["g",{"id":"umd"},["path",{"d":"m 0,0 1,0 c 1,7 4,20 9,20","class":"s1"}]],["g",{"id":"umu"},["path",{"d":"M 0,0 10,0","class":"s3"}]],["g",{"id":"umz"},["path",{"d":"m 0,0 1,0 c 2,6 6,10 9,10","class":"s4"}]],["g",{"id":"zzz"},["path",{"d":"m 0,10 10,0","class":"s1"}]],["g",{"id":"zm0"},["path",{"d":"m 0,10 1,0 4,10 5,0","class":"s1"}]],["g",{"id":"zm1"},["path",{"d":"M 0,10 1,10 5,0 10,0","class":"s1"}]],["g",{"id":"zmx"},["path",{"d":"m 1,10 4,10 5,0","class":"s1"}],["path",{"d":"M 0,10 1,10 5,0 10,0","class":"s1"}],["path",{"d":"M 10,15 5,20","class":"s2"}],["path",{"d":"M 10,10 4,16","class":"s2"}],["path",{"d":"M 10,5 2.5,12.5","class":"s2"}],["path",{"d":"M 10,0 2,8","class":"s2"}]],["g",{"id":"zmd"},["path",{"d":"m 0,10 1,0 c 2,6 6,10 9,10","class":"s1"}]],["g",{"id":"zmu"},["path",{"d":"m 0,10 1,0 C 3,4 7,0 10,0","class":"s1"}]],["g",{"id":"zmz"},["path",{"d":"m 0,10 10,0","class":"s1"}]],["g",{"id":"gap"},["path",{"d":"m 7,-2 -4,0 c -5,0 -5,24 -10,24 l 4,0 C 2,22 2,-2 7,-2 z","class":"s5"}],["path",{"d":"M -7,22 C -2,22 -2,-2 3,-2","class":"s1"}],["path",{"d":"M -3,22 C 2,22 2,-2 7,-2","class":"s1"}]],["g",{"id":"0mv-3"},["path",{"d":"m 7,0 3,0 0,20 -9,0 z","class":"s6"}],["path",{"d":"M 1,20 7,0 10,0","class":"s1"}],["path",{"d":"m 0,20 10,0","class":"s1"}]],["g",{"id":"1mv-3"},["path",{"d":"m 1,0 9,0 0,20 -3,0 z","class":"s6"}],["path",{"d":"m 1,0 6,20 3,0","class":"s1"}],["path",{"d":"M 0,0 10,0","class":"s1"}]],["g",{"id":"xmv-3"},["path",{"d":"M 7,0 10,0 10,20 7,20 4,10 z","class":"s6"}],["path",{"d":"M 0,20 1,20 7,0 10,0","class":"s1"}],["path",{"d":"m 0,0 1,0 6,20 3,0","class":"s1"}],["path",{"d":"M 0,5 2,3","class":"s2"}],["path",{"d":"M 0,10 3,7","class":"s2"}],["path",{"d":"M 0,15 3,12","class":"s2"}],["path",{"d":"M 0,20 1,19","class":"s2"}]],["g",{"id":"dmv-3"},["path",{"d":"m 7,0 3,0 0,20 -9,0 z","class":"s6"}],["path",{"d":"M 1,20 7,0 10,0","class":"s1"}],["path",{"d":"m 0,20 10,0","class":"s1"}]],["g",{"id":"umv-3"},["path",{"d":"m 1,0 9,0 0,20 -3,0 z","class":"s6"}],["path",{"d":"m 1,0 6,20 3,0","class":"s1"}],["path",{"d":"M 0,0 10,0","class":"s1"}]],["g",{"id":"zmv-3"},["path",{"d":"M 5,0 10,0 10,20 5,20 1,10 z","class":"s6"}],["path",{"d":"m 1,10 4,10 5,0","class":"s1"}],["path",{"d":"M 0,10 1,10 5,0 10,0","class":"s1"}]],["g",{"id":"vvv-3"},["path",{"d":"M 10,20 0,20 0,0 10,0","class":"s6"}],["path",{"d":"m 0,20 10,0","class":"s1"}],["path",{"d":"M 0,0 10,0","class":"s1"}]],["g",{"id":"vm0-3"},["path",{"d":"m 0,20 0,-20 1.000687,-0.00391 6,20","class":"s6"}],["path",{"d":"m 0,0 1.000687,-0.00391 6,20","class":"s1"}],["path",{"d":"m 0,20 10.000687,-0.0039","class":"s1"}]],["g",{"id":"vm1-3"},["path",{"d":"M 0,0 0,20 1,20 7,0","class":"s6"}],["path",{"d":"M 0,0 10,0","class":"s1"}],["path",{"d":"M 0,20 1,20 7,0","class":"s1"}]],["g",{"id":"vmx-3"},["path",{"d":"M 0,0 0,20 1,20 4,10 1,0","class":"s6"}],["path",{"d":"m 0,0 1,0 6,20 3,0","class":"s1"}],["path",{"d":"M 0,20 1,20 7,0 10,0","class":"s1"}],["path",{"d":"M 10,15 6.5,18.5","class":"s2"}],["path",{"d":"M 10,10 5.5,14.5","class":"s2"}],["path",{"d":"M 10,5 4,11","class":"s2"}],["path",{"d":"M 10,0 6,4","class":"s2"}]],["g",{"id":"vmd-3"},["path",{"d":"m 0,0 0,20 10,0 C 5,20 2,7 1,0","class":"s6"}],["path",{"d":"m 0,0 1,0 c 1,7 4,20 9,20","class":"s1"}],["path",{"d":"m 0,20 10,0","class":"s1"}]],["g",{"id":"vmu-3"},["path",{"d":"m 0,0 0,20 1,0 C 2,13 5,0 10,0","class":"s6"}],["path",{"d":"m 0,20 1,0 C 2,13 5,0 10,0","class":"s1"}],["path",{"d":"M 0,0 10,0","class":"s1"}]],["g",{"id":"vmz-3"},["path",{"d":"M 0,0 1,0 C 3,6 7,10 10,10 7,10 3,14 1,20 L 0,20","class":"s6"}],["path",{"d":"m 0,0 1,0 c 2,6 6,10 9,10","class":"s1"}],["path",{"d":"m 0,20 1,0 C 3,14 7,10 10,10","class":"s1"}]],["g",{"id":"vmv-3-3"},["path",{"d":"M 7,0 10,0 10,20 7,20 4,10 z","class":"s6"}],["path",{"d":"M 1,0 0,0 0,20 1,20 4,10 z","class":"s6"}],["path",{"d":"m 0,0 1,0 6,20 3,0","class":"s1"}],["path",{"d":"M 0,20 1,20 7,0 10,0","class":"s1"}]],["g",{"id":"vmv-3-4"},["path",{"d":"M 7,0 10,0 10,20 7,20 4,10 z","class":"s7"}],["path",{"d":"M 1,0 0,0 0,20 1,20 4,10 z","class":"s6"}],["path",{"d":"m 0,0 1,0 6,20 3,0","class":"s1"}],["path",{"d":"M 0,20 1,20 7,0 10,0","class":"s1"}]],["g",{"id":"vmv-3-5"},["path",{"d":"M 7,0 10,0 10,20 7,20 4,10 z","class":"s8"}],["path",{"d":"M 1,0 0,0 0,20 1,20 4,10 z","class":"s6"}],["path",{"d":"m 0,0 1,0 6,20 3,0","class":"s1"}],["path",{"d":"M 0,20 1,20 7,0 10,0","class":"s1"}]],["g",{"id":"vmv-4-3"},["path",{"d":"M 7,0 10,0 10,20 7,20 4,10 z","class":"s6"}],["path",{"d":"M 1,0 0,0 0,20 1,20 4,10 z","class":"s7"}],["path",{"d":"m 0,0 1,0 6,20 3,0","class":"s1"}],["path",{"d":"M 0,20 1,20 7,0 10,0","class":"s1"}]],["g",{"id":"vmv-4-4"},["path",{"d":"M 7,0 10,0 10,20 7,20 4,10 z","class":"s7"}],["path",{"d":"M 1,0 0,0 0,20 1,20 4,10 z","class":"s7"}],["path",{"d":"m 0,0 1,0 6,20 3,0","class":"s1"}],["path",{"d":"M 0,20 1,20 7,0 10,0","class":"s1"}]],["g",{"id":"vmv-4-5"},["path",{"d":"M 7,0 10,0 10,20 7,20 4,10 z","class":"s8"}],["path",{"d":"M 1,0 0,0 0,20 1,20 4,10 z","class":"s7"}],["path",{"d":"m 0,0 1,0 6,20 3,0","class":"s1"}],["path",{"d":"M 0,20 1,20 7,0 10,0","class":"s1"}]],["g",{"id":"vmv-5-3"},["path",{"d":"M 7,0 10,0 10,20 7,20 4,10 z","class":"s6"}],["path",{"d":"M 1,0 0,0 0,20 1,20 4,10 z","class":"s8"}],["path",{"d":"m 0,0 1,0 6,20 3,0","class":"s1"}],["path",{"d":"M 0,20 1,20 7,0 10,0","class":"s1"}]],["g",{"id":"vmv-5-4"},["path",{"d":"M 7,0 10,0 10,20 7,20 4,10 z","class":"s7"}],["path",{"d":"M 1,0 0,0 0,20 1,20 4,10 z","class":"s8"}],["path",{"d":"m 0,0 1,0 6,20 3,0","class":"s1"}],["path",{"d":"M 0,20 1,20 7,0 10,0","class":"s1"}]],["g",{"id":"vmv-5-5"},["path",{"d":"M 7,0 10,0 10,20 7,20 4,10 z","class":"s8"}],["path",{"d":"M 1,0 0,0 0,20 1,20 4,10 z","class":"s8"}],["path",{"d":"m 0,0 1,0 6,20 3,0","class":"s1"}],["path",{"d":"M 0,20 1,20 7,0 10,0","class":"s1"}]],["g",{"id":"0mv-4"},["path",{"d":"m 7,0 3,0 0,20 -9,0 z","class":"s7"}],["path",{"d":"M 1,20 7,0 10,0","class":"s1"}],["path",{"d":"m 0,20 10,0","class":"s1"}]],["g",{"id":"1mv-4"},["path",{"d":"m 1,0 9,0 0,20 -3,0 z","class":"s7"}],["path",{"d":"m 1,0 6,20 3,0","class":"s1"}],["path",{"d":"M 0,0 10,0","class":"s1"}]],["g",{"id":"xmv-4"},["path",{"d":"M 7,0 10,0 10,20 7,20 4,10 z","class":"s7"}],["path",{"d":"M 0,20 1,20 7,0 10,0","class":"s1"}],["path",{"d":"m 0,0 1,0 6,20 3,0","class":"s1"}],["path",{"d":"M 0,5 2,3","class":"s2"}],["path",{"d":"M 0,10 3,7","class":"s2"}],["path",{"d":"M 0,15 4,11","class":"s2"}],["path",{"d":"M 0,20 1,19","class":"s2"}]],["g",{"id":"dmv-4"},["path",{"d":"m 7,0 3,0 0,20 -9,0 z","class":"s7"}],["path",{"d":"M 1,20 7,0 10,0","class":"s1"}],["path",{"d":"m 0,20 10,0","class":"s1"}]],["g",{"id":"umv-4"},["path",{"d":"m 1,0 9,0 0,20 -3,0 z","class":"s7"}],["path",{"d":"m 1,0 6,20 3,0","class":"s1"}],["path",{"d":"M 0,0 10,0","class":"s1"}]],["g",{"id":"zmv-4"},["path",{"d":"M 5,0 10,0 10,20 5,20 1,10 z","class":"s7"}],["path",{"d":"m 1,10 4,10 5,0","class":"s1"}],["path",{"d":"M 0,10 1,10 5,0 10,0","class":"s1"}]],["g",{"id":"0mv-5"},["path",{"d":"m 7,0 3,0 0,20 -9,0 z","class":"s8"}],["path",{"d":"M 1,20 7,0 10,0","class":"s1"}],["path",{"d":"m 0,20 10,0","class":"s1"}]],["g",{"id":"1mv-5"},["path",{"d":"m 1,0 9,0 0,20 -3,0 z","class":"s8"}],["path",{"d":"m 1,0 6,20 3,0","class":"s1"}],["path",{"d":"M 0,0 10,0","class":"s1"}]],["g",{"id":"xmv-5"},["path",{"d":"M 7,0 10,0 10,20 7,20 4,10 z","class":"s8"}],["path",{"d":"M 0,20 1,20 7,0 10,0","class":"s1"}],["path",{"d":"m 0,0 1,0 6,20 3,0","class":"s1"}],["path",{"d":"M 0,5 2,3","class":"s2"}],["path",{"d":"M 0,10 3,7","class":"s2"}],["path",{"d":"M 0,15 4,11","class":"s2"}],["path",{"d":"M 0,20 1,19","class":"s2"}]],["g",{"id":"dmv-5"},["path",{"d":"m 7,0 3,0 0,20 -9,0 z","class":"s8"}],["path",{"d":"M 1,20 7,0 10,0","class":"s1"}],["path",{"d":"m 0,20 10,0","class":"s1"}]],["g",{"id":"umv-5"},["path",{"d":"m 1,0 9,0 0,20 -3,0 z","class":"s8"}],["path",{"d":"m 1,0 6,20 3,0","class":"s1"}],["path",{"d":"M 0,0 10,0","class":"s1"}]],["g",{"id":"zmv-5"},["path",{"d":"M 5,0 10,0 10,20 5,20 1,10 z","class":"s8"}],["path",{"d":"m 1,10 4,10 5,0","class":"s1"}],["path",{"d":"M 0,10 1,10 5,0 10,0","class":"s1"}]],["g",{"id":"vvv-4"},["path",{"d":"M 10,20 0,20 0,0 10,0","class":"s7"}],["path",{"d":"m 0,20 10,0","class":"s1"}],["path",{"d":"M 0,0 10,0","class":"s1"}]],["g",{"id":"vm0-4"},["path",{"d":"M 0,20 0,0 1,0 7,20","class":"s7"}],["path",{"d":"M 0,0 1,0 7,20","class":"s1"}],["path",{"d":"m 0,20 10,0","class":"s1"}]],["g",{"id":"vm1-4"},["path",{"d":"M 0,0 0,20 1,20 7,0","class":"s7"}],["path",{"d":"M 0,0 10,0","class":"s1"}],["path",{"d":"M 0,20 1,20 7,0","class":"s1"}]],["g",{"id":"vmx-4"},["path",{"d":"M 0,0 0,20 1,20 4,10 1,0","class":"s7"}],["path",{"d":"m 0,0 1,0 6,20 3,0","class":"s1"}],["path",{"d":"M 0,20 1,20 7,0 10,0","class":"s1"}],["path",{"d":"M 10,15 6.5,18.5","class":"s2"}],["path",{"d":"M 10,10 5.5,14.5","class":"s2"}],["path",{"d":"M 10,5 4,11","class":"s2"}],["path",{"d":"M 10,0 6,4","class":"s2"}]],["g",{"id":"vmd-4"},["path",{"d":"m 0,0 0,20 10,0 C 5,20 2,7 1,0","class":"s7"}],["path",{"d":"m 0,0 1,0 c 1,7 4,20 9,20","class":"s1"}],["path",{"d":"m 0,20 10,0","class":"s1"}]],["g",{"id":"vmu-4"},["path",{"d":"m 0,0 0,20 1,0 C 2,13 5,0 10,0","class":"s7"}],["path",{"d":"m 0,20 1,0 C 2,13 5,0 10,0","class":"s1"}],["path",{"d":"M 0,0 10,0","class":"s1"}]],["g",{"id":"vmz-4"},["path",{"d":"M 0,0 1,0 C 3,6 7,10 10,10 7,10 3,14 1,20 L 0,20","class":"s7"}],["path",{"d":"m 0,0 1,0 c 2,6 6,10 9,10","class":"s1"}],["path",{"d":"m 0,20 1,0 C 3,14 7,10 10,10","class":"s1"}]],["g",{"id":"vvv-5"},["path",{"d":"M 10,20 0,20 0,0 10,0","class":"s8"}],["path",{"d":"m 0,20 10,0","class":"s1"}],["path",{"d":"M 0,0 10,0","class":"s1"}]],["g",{"id":"vm0-5"},["path",{"d":"M 0,20 0,0 1,0 7,20","class":"s8"}],["path",{"d":"M 0,0 1,0 7,20","class":"s1"}],["path",{"d":"m 0,20 10,0","class":"s1"}]],["g",{"id":"vm1-5"},["path",{"d":"M 0,0 0,20 1,20 7,0","class":"s8"}],["path",{"d":"M 0,0 10,0","class":"s1"}],["path",{"d":"M 0,20 1,20 7,0","class":"s1"}]],["g",{"id":"vmx-5"},["path",{"d":"M 0,0 0,20 1,20 4,10 1,0","class":"s8"}],["path",{"d":"m 0,0 1,0 6,20 3,0","class":"s1"}],["path",{"d":"M 0,20 1,20 7,0 10,0","class":"s1"}],["path",{"d":"M 10,15 6.5,18.5","class":"s2"}],["path",{"d":"M 10,10 5.5,14.5","class":"s2"}],["path",{"d":"M 10,5 4,11","class":"s2"}],["path",{"d":"M 10,0 6,4","class":"s2"}]],["g",{"id":"vmd-5"},["path",{"d":"m 0,0 0,20 10,0 C 5,20 2,7 1,0","class":"s8"}],["path",{"d":"m 0,0 1,0 c 1,7 4,20 9,20","class":"s1"}],["path",{"d":"m 0,20 10,0","class":"s1"}]],["g",{"id":"vmu-5"},["path",{"d":"m 0,0 0,20 1,0 C 2,13 5,0 10,0","class":"s8"}],["path",{"d":"m 0,20 1,0 C 2,13 5,0 10,0","class":"s1"}],["path",{"d":"M 0,0 10,0","class":"s1"}]],["g",{"id":"vmz-5"},["path",{"d":"M 0,0 1,0 C 3,6 7,10 10,10 7,10 3,14 1,20 L 0,20","class":"s8"}],["path",{"d":"m 0,0 1,0 c 2,6 6,10 9,10","class":"s1"}],["path",{"d":"m 0,20 1,0 C 3,14 7,10 10,10","class":"s1"}]],["g",{"id":"Pclk"},["path",{"d":"M -3,12 0,3 3,12 C 1,11 -1,11 -3,12 z","class":"s9"}],["path",{"d":"M 0,20 0,0 10,0","class":"s1"}]],["g",{"id":"Nclk"},["path",{"d":"M -3,8 0,17 3,8 C 1,9 -1,9 -3,8 z","class":"s9"}],["path",{"d":"m 0,0 0,20 10,0","class":"s1"}]],["g",{"id":"vvv-2"},["path",{"d":"M 10,20 0,20 0,0 10,0","class":"s10"}],["path",{"d":"m 0,20 10,0","class":"s1"}],["path",{"d":"M 0,0 10,0","class":"s1"}]],["g",{"id":"vm0-2"},["path",{"d":"m 0,20 0,-20 1.000687,-0.00391 5,20","class":"s10"}],["path",{"d":"m 0,0 1.000687,-0.00391 6,20","class":"s1"}],["path",{"d":"m 0,20 10.000687,-0.0039","class":"s1"}]],["g",{"id":"vm1-2"},["path",{"d":"M 0,0 0,20 3,20 9,0","class":"s10"}],["path",{"d":"M 0,0 10,0","class":"s1"}],["path",{"d":"M 0,20 1,20 7,0","class":"s1"}]],["g",{"id":"vmx-2"},["path",{"d":"M 0,0 0,20 1,20 4,10 1,0","class":"s10"}],["path",{"d":"m 0,0 1,0 6,20 3,0","class":"s1"}],["path",{"d":"M 0,20 1,20 7,0 10,0","class":"s1"}],["path",{"d":"M 10,15 6.5,18.5","class":"s2"}],["path",{"d":"M 10,10 5.5,14.5","class":"s2"}],["path",{"d":"M 10,5 4,11","class":"s2"}],["path",{"d":"M 10,0 6,4","class":"s2"}]],["g",{"id":"vmd-2"},["path",{"d":"m 0,0 0,20 10,0 C 5,20 2,7 1,0","class":"s10"}],["path",{"d":"m 0,0 1,0 c 1,7 4.0217106,19.565788 9,20","class":"s1"}],["path",{"d":"m 0,20 10,0","class":"s1"}]],["g",{"id":"vmu-2"},["path",{"d":"m 0,0 0,20 1,0 C 2,13 5,0 10,0","class":"s10"}],["path",{"d":"m 0,20 1,0 C 2,13 5,0 10,0","class":"s1"}],["path",{"d":"M 0,0 10,0","class":"s1"}]],["g",{"id":"vmz-2"},["path",{"d":"M 0,0 1,0 C 3,6 7,10 10,10 7,10 3,14 1,20 L 0,20","class":"s10"}],["path",{"d":"m 0,0 1,0 c 2,6 6,10 9,10","class":"s1"}],["path",{"d":"m 0,20 1,0 C 3,14 7,10 10,10","class":"s1"}]],["g",{"id":"0mv-2"},["path",{"d":"m 7,0 3,0 0,20 -9,0 z","class":"s10"}],["path",{"d":"M 1,20 7,0 10,0","class":"s1"}],["path",{"d":"m 0,20 10,0","class":"s1"}]],["g",{"id":"1mv-2"},["path",{"d":"m 1,0 9,0 0,20 -3,0 z","class":"s10"}],["path",{"d":"m 1,0 6,20 3,0","class":"s1"}],["path",{"d":"M 0,0 10,0","class":"s1"}]],["g",{"id":"xmv-2"},["path",{"d":"M 7,0 10,0 10,20 7,20 4,10 z","class":"s10"}],["path",{"d":"M 0,20 1,20 7,0 10,0","class":"s1"}],["path",{"d":"m 0,0 1,0 6,20 3,0","class":"s1"}],["path",{"d":"M 0,5 2,3","class":"s2"}],["path",{"d":"M 0,10 3,7","class":"s2"}],["path",{"d":"M 0,15 4,11","class":"s2"}],["path",{"d":"M 0,20 1,19","class":"s2"}]],["g",{"id":"dmv-2"},["path",{"d":"m 7,0 3,0 0,20 -9,0 z","class":"s10"}],["path",{"d":"M 1,20 7,0 10,0","class":"s1"}],["path",{"d":"m 0,20 10,0","class":"s1"}]],["g",{"id":"umv-2"},["path",{"d":"m 1,0 9,0 0,20 -3,0 z","class":"s10"}],["path",{"d":"m 1,0 6,20 3,0","class":"s1"}],["path",{"d":"M 0,0 10,0","class":"s1"}]],["g",{"id":"zmv-2"},["path",{"d":"M 5,0 10,0 10,20 5,20 1,10 z","class":"s10"}],["path",{"d":"m 1,10 4,10 5,0","class":"s1"}],["path",{"d":"M 0,10 1,10 5,0 10,0","class":"s1"}]],["g",{"id":"vmv-3-2"},["path",{"d":"M 7,0 10,0 10,20 7,20 4,10 z","class":"s10"}],["path",{"d":"M 1,0 0,0 0,20 1,20 4,10 z","class":"s6"}],["path",{"d":"m 0,0 1,0 6,20 3,0","class":"s1"}],["path",{"d":"M 0,20 1,20 7,0 10,0","class":"s1"}]],["g",{"id":"vmv-4-2"},["path",{"d":"M 7,0 10,0 10,20 7,20 4,10 z","class":"s10"}],["path",{"d":"M 1,0 0,0 0,20 1,20 4,10 z","class":"s7"}],["path",{"d":"m 0,0 1,0 6,20 3,0","class":"s1"}],["path",{"d":"M 0,20 1,20 7,0 10,0","class":"s1"}]],["g",{"id":"vmv-5-2"},["path",{"d":"M 7,0 10,0 10,20 7,20 4,10 z","class":"s10"}],["path",{"d":"M 1,0 0,0 0,20 1,20 4,10 z","class":"s8"}],["path",{"d":"m 0,0 1,0 6,20 3,0","class":"s1"}],["path",{"d":"M 0,20 1,20 7,0 10,0","class":"s1"}]],["g",{"id":"vmv-2-3"},["path",{"d":"M 7,0 10,0 10,20 7,20 4,10 z","class":"s6"}],["path",{"d":"M 1,0 0,0 0,20 1,20 4,10 z","class":"s10"}],["path",{"d":"m 0,0 1,0 6,20 3,0","class":"s1"}],["path",{"d":"M 0,20 1,20 7,0 10,0","class":"s1"}]],["g",{"id":"vmv-2-4"},["path",{"d":"M 7,0 10,0 10,20 7,20 4,10 z","class":"s7"}],["path",{"d":"M 1,0 0,0 0,20 1,20 4,10 z","class":"s10"}],["path",{"d":"m 0,0 1,0 6,20 3,0","class":"s1"}],["path",{"d":"M 0,20 1,20 7,0 10,0","class":"s1"}]],["g",{"id":"vmv-2-5"},["path",{"d":"M 7,0 10,0 10,20 7,20 4,10 z","class":"s8"}],["path",{"d":"M 1,0 0,0 0,20 1,20 4,10 z","class":"s10"}],["path",{"d":"m 0,0 1,0 6,20 3,0","class":"s1"}],["path",{"d":"M 0,20 1,20 7,0 10,0","class":"s1"}]],["g",{"id":"vmv-2-2"},["path",{"d":"M 7,0 10,0 10,20 7,20 4,10 z","class":"s10"}],["path",{"d":"M 1,0 0,0 0,20 1,20 4,10 z","class":"s10"}],["path",{"d":"m 0,0 1,0 6,20 3,0","class":"s1"}],["path",{"d":"M 0,20 1,20 7,0 10,0","class":"s1"}]],["marker",{"id":"arrowhead","style":"fill:#0041c4","markerHeight":"7","markerWidth":"10","markerUnits":"strokeWidth","viewBox":"0 -4 11 8","refX":"15","refY":"0","orient":"auto"},["path",{"d":"M0 -4 11 0 0 4z"}]],["marker",{"id":"arrowtail","style":"fill:#0041c4","markerHeight":"7","markerWidth":"10","markerUnits":"strokeWidth","viewBox":"-11 -4 11 8","refX":"-15","refY":"0","orient":"auto"},["path",{"d":"M0 -4 -11 0 0 4z"}]]],["g",{"id":"waves"},["g",{"id":"lanes"}],["g",{"id":"groups"}]]]; diff -r 70aad9a1272b -r 4fa6621fec0f pelicanconf.py --- a/pelicanconf.py Sat Sep 17 02:08:03 2016 +0200 +++ b/pelicanconf.py Sun Sep 18 22:40:28 2016 +0200 @@ -67,7 +67,9 @@ STATIC_PATHS = ['images', 'pdfs'] -PLUGIN_PATHS = ['pelican-plugins', 'pelican-plugins/pelican_dailymotion', ] +PLUGIN_PATHS = ['pelican-plugins', + 'pelican-plugins/pelican_dailymotion', + ] PLUGINS = ['better_figures_and_images', 'sitemap', 'feed_summary', @@ -76,6 +78,8 @@ 'related_posts', 'filetime_from_hg', 'pelican_dailymotion', + 'pelican_javascript', + 'wavedrom', ] RESPONSIVE_IMAGES = True TYPOGRIPFY = True diff -r 70aad9a1272b -r 4fa6621fec0f theme/templates/base.html --- a/theme/templates/base.html Sat Sep 17 02:08:03 2016 +0200 +++ b/theme/templates/base.html Sun Sep 18 22:40:28 2016 +0200 @@ -1,45 +1,59 @@ - - - - - - - {% block head %} - {% block title %}{{ SITENAME }}{% endblock title %} - - {% if FEED_ALL_ATOM %} - - {% endif %} - {% if FEED_ALL_RSS %} - - {% endif %} - {% if FEED_ATOM %} - - {% endif %} - {% if FEED_RSS %} - - {% endif %} - {% if CATEGORY_FEED_ATOM and category %} - - {% endif %} - {% if CATEGORY_FEED_RSS and category %} - - {% endif %} - {% if TAG_FEED_ATOM and tag %} - - {% endif %} - {% if TAG_FEED_RSS and tag %} - - {% endif %} - {% if PIWIK %} - {{PIWIK}} - {% endif %} - {% endblock head %} + + + + + + + {% block head %} + {% block title %}{{ SITENAME }}{% endblock title %} + + {% if FEED_ALL_ATOM %} + + {% endif %} + {% if FEED_ALL_RSS %} + + {% endif %} + {% if FEED_ATOM %} + + {% endif %} + {% if FEED_RSS %} + + {% endif %} + {% if CATEGORY_FEED_ATOM and category %} + + {% endif %} + {% if CATEGORY_FEED_RSS and category %} + + {% endif %} + {% if TAG_FEED_ATOM and tag %} + + {% endif %} + {% if TAG_FEED_RSS and tag %} + + {% endif %} + {% if PIWIK %} + {{PIWIK}} + {% endif %} + {% if article %} + {% if article.stylesheets %} + {% for stylesheet in article.stylesheets %} + {{ stylesheet }} + {% endfor %} + {% endif %} + + {% if article.javascripts %} + {% for javascript in article.javascripts %} +{{ javascript }} + {% endfor %} + {% endif %} +{% endif %} + + {% endblock head %} - +
+ +