getorgchart.js
55.6 KB
getOrgChart=function(b,a){this.config={theme:"annabel",color:"darkred",editable:true,zoomable:true,searchable:true,movable:true,gridView:false,printable:false,scale:"auto",linkType:"M",orientation:getOrgChart.RO_TOP,nodeJustification:getOrgChart.NJ_TOP,primaryColumns:["Name","Title"],imageColumn:"Image",levelSeparation:100,siblingSeparation:30,subtreeSeparation:40,topXAdjustment:0,topYAdjustment:0,removeEvent:"",updateEvent:"",renderBoxContentEvent:"",clickEvent:"",embededDefinitions:"",render:"AUTO",maxDepth:50,dataSource:null,linkLabels:null,boxesColor:[]};var d=getOrgChart.util._4("colorScheme");if(d){this.config.color=d}if(a){for(var c in this.config){if(typeof(a[c])!="undefined"){this.config[c]=a[c]}}}this._r();this.version="1.3";this.theme=getOrgChart.themes[this.config.theme];this.element=b;this.render=(this.config.render=="AUTO")?getOrgChart._R():this.config.render;this._ai=[];this._ak=[];this._a1=[];this._zz=0;this._za=0;this._aN=[];this._aH=[];this._zq=new getOrgChart.person(-1,null,null,2,2);this._y;this._aT={};this._ze={found:[],showIndex:0,oldValue:"",timer:""};this._as();this._A=new getOrgChart._A(this.element);if(this.theme.defs){this.config.embededDefinitions+=this.theme.defs}this.load()};getOrgChart.prototype._as=function(){this._zS=get._f().msie?this.element.clientWidth:window.getComputedStyle(this.element,null).width;this._zS=parseInt(this._zS);if(this._zS<3){this._zS=1024;this.element.style.width="1024px"}this._zW=get._f().msie?this.element.clientHeight:window.getComputedStyle(this.element,null).height;this._zW=parseInt(this._zW);if(this._zW<3){this._zW=parseInt((this._zS*9)/16);this.element.style.height=this._zW+"px"}this._aB=this._zS;this._aG=this._zW-this.theme.toolbarHeight;var a=getOrgChart.INNER_HTML.replace("[theme]",this.config.theme).replace("[color]",this.config.color).replace(/\[height]/g,this._aG).replace(/\[toolbar-height]/g,this.theme.toolbarHeight);if(getOrgChart._zA){a=a.slice(0,-6);a+=getOrgChart._zA}this.element.innerHTML=a};getOrgChart.prototype.changeColorScheme=function(a){if(this.config.color==a){return}this._A._zZ.className=this._A._zZ.className.replace(this.config.color,a);this.config.color=a};getOrgChart.prototype._aJ=function(){this._ai=[];this._ak=[];this._a1=[];getOrgChart._E(this,this._zq,0);switch(this.config.orientation){case getOrgChart.RO_TOP:case getOrgChart.RO_TOP_PARENT_LEFT:case getOrgChart.RO_LEFT:case getOrgChart.RO_LEFT_PARENT_TOP:this._za=this.config.topXAdjustment+this._zq._zE;this._zz=this.config.topYAdjustment+this._zq._zD;break;case getOrgChart.RO_BOTTOM:case getOrgChart.RO_BOTTOM_PARENT_LEFT:case getOrgChart.RO_RIGHT:case getOrgChart.RO_RIGHT_PARENT_TOP:this._za=this.config.topXAdjustment+this._zq._zE;this._zz=this.config.topYAdjustment+this._zq._zD}getOrgChart._zf(this,this._zq,0,0,0)};getOrgChart.prototype._zg=function(b,a){if(this._ai[a]==null){this._ai[a]=0}if(this._ai[a]<b.h){this._ai[a]=b.h}};getOrgChart.prototype._zb=function(b,a){if(this._ak[a]==null){this._ak[a]=0}if(this._ak[a]<b.w){this._ak[a]=b.w}};getOrgChart.prototype._zy=function(b,a){b.leftNeighbor=this._a1[a];if(b.leftNeighbor!=null){b.leftNeighbor.rightNeighbor=b}this._a1[a]=b};getOrgChart.prototype._1=function(a){switch(this.config.orientation){case getOrgChart.RO_TOP:case getOrgChart.RO_TOP_PARENT_LEFT:case getOrgChart.RO_BOTTOM:case getOrgChart.RO_BOTTOM_PARENT_LEFT:return a.w;case getOrgChart.RO_RIGHT:case getOrgChart.RO_RIGHT_PARENT_TOP:case getOrgChart.RO_LEFT:case getOrgChart.RO_LEFT_PARENT_TOP:return a.h}return 0};getOrgChart.prototype._K=function(g,d,e){if(d>=e){return g}if(g._T()==0){return null}var f=g._T();for(var a=0;a<f;a++){var b=g._F(a);var c=this._K(b,d+1,e);if(c!=null){return c}}return null};getOrgChart.prototype._P=function(c){if(this.config.linkLabels&&this.config.linkLabels.length>0){var a;for(a=0;a<this.config.linkLabels.length;a++){var b=this.config.linkLabels[a];if(c.id==b.id){return b}}}return null};getOrgChart.prototype._Q=function(){var f=[];var d=null;for(var b=0;b<this._aN.length;b++){d=this._aN[b];switch(this.render){case"SVG":var a=d.getImageUrl();var j=parseInt(d._zE);var l=parseInt(d._zD);var h=a?this.theme.textPoints:this.theme.textPointsNoImage;f.push(getOrgChart.OPEN_GROUP.replace("[x]",j).replace("[y]",l).replace("[level]",d.level));for(themeProperty in this.theme){switch(themeProperty){case"image":if(a){f.push(this.theme.image.replace("[href]",a))}break;case"box":f.push(this.theme.box);break;case"text":var g=0;for(k=0;k<this.config.primaryColumns.length;k++){var e=h[g];var c=this.config.primaryColumns[k];if(!e||!d.data||!d.data[c]){continue}f.push(this.theme.text.replace("[index]",g).replace("[text]",d.data[c]).replace("[y]",e.y).replace("[x]",e.x).replace("[rotate]",e.rotate).replace("[width]",e.width));g++}break}}this._X("renderBoxContentEvent",{id:d.id,parentId:d.pid,data:d.data,boxContentElements:f});f.push(getOrgChart.CLOSE_GROUP);break;case"VML":break}f.push(d._p(this))}return f.join("")};getOrgChart.prototype._a8=function(){var a=[];this._aJ();var b=this._y;if(!b){b=this._6()}switch(this.render){case"SVG":a.push(getOrgChart.OPEN_SVG.replace("[defs]",this.config.embededDefinitions).replace("[viewBox]",b.toString()));a.push(this._Q());a.push(getOrgChart.CLOSE_SVG);break;case"VML":break}return a.join("")};getOrgChart.prototype._6=function(){if(this.config.scale==="auto"){var b=0;var c=0;var d=0;var e=0;for(i=0;i<this._aN.length;i++){if(this._aN[i]._zE>b){b=this._aN[i]._zE}if(this._aN[i]._zD>c){c=this._aN[i]._zD}if(this._aN[i]._zE<d){d=this._aN[i]._zE}if(this._aN[i]._zD<e){e=this._aN[i]._zD}}var g=d-(this.config.siblingSeparation/2);var h=e-(this.config.levelSeparation/2);var f=Math.abs(d)+Math.abs(b)+this.theme.size[0]+this.config.siblingSeparation;var a=Math.abs(e)+Math.abs(c)+this.theme.size[1]+this.config.levelSeparation;this.initialViewBoxMatrix=[g,h,f,a]}else{var g=this.config.siblingSeparation/2;var h=this.config.levelSeparation/2;var f=(this._aB)/this.config.scale;var a=(this._aG)/this.config.scale;switch(this.config.orientation){case getOrgChart.RO_TOP:case getOrgChart.RO_TOP_PARENT_LEFT:this.initialViewBoxMatrix=[-g,h,f,a];break;case getOrgChart.RO_BOTTOM:case getOrgChart.RO_BOTTOM_PARENT_LEFT:this.initialViewBoxMatrix=[-g,-h-a,f,a];break;case getOrgChart.RO_RIGHT:case getOrgChart.RO_RIGHT_PARENT_TOP:this.initialViewBoxMatrix=[-f-h,-g,f,a];break;case getOrgChart.RO_LEFT:case getOrgChart.RO_LEFT_PARENT_TOP:this.initialViewBoxMatrix=[h,-g,f,a];break}}return this.initialViewBoxMatrix.toString()};getOrgChart.prototype.draw=function(){this._A._aK();this._A._t.innerHTML=this._a8();this._A._aI();if(this.config.searchable){this._A._zd.style.display="inherit";this._A._aW.style.display="inherit";this._A._aL.style.display="inherit"}if(this.config.zoomable){this._A._zV.style.display="inherit";this._A._zR.style.display="inherit"}if(this.config.editable){this._A._g.style.display="inherit";this._A._zw.style.display="inherit";this._A._a6.style.display="inherit"}if(this.config.gridView){this._A._8.style.display="inherit"}if(this.config.printable){this._A._a2.style.display="inherit"}if(this.config.movable){this._A._a9.style.display="inherit";this._A._an.style.display="inherit";this._A._l.style.display="inherit";this._A._zQ.style.display="inherit"}getOrgChart._zp(this._A);getOrgChart._z(this._A._au,this.config.orientation);this._c();var a;for(a=0;a<this.config.boxesColor.length;a++){this._zt(this.config.boxesColor[a].id,this.config.boxesColor[a].color)}this.showMainView();return this};getOrgChart.prototype.setBoxColor=function(b,a){this.config.boxesColor.push({id:b,color:a});this._zt(b,a)};getOrgChart.prototype._zt=function(d,b){var c;for(c=0;c<this._aN.length;c++){if(this._aN[c].id===d){var a=this._A._J(this._aN[c]._zE,this._aN[c]._zD);a.setAttribute("class",a.getAttribute("class")+" get-"+b);break}}};getOrgChart.prototype._aA=function(b,a){switch(b){case this._A._a9:this.move("right");break;case this._A._an:this.move("left");break;case this._A._l:this.move("up");break;case this._A._zQ:this.move("down");break}};getOrgChart.prototype.move=function(d){if(this._aZ){return}this._aZ=true;var f=getOrgChart.util._5(this._A);var c=f.slice(0);var a=this.theme.size[0];var b=this.theme.size[1];switch(d){case"left":c[0]-=a;break;case"down":c[1]-=b;break;case"right":c[0]+=a;break;case"up":c[1]+=b;break}var e=this;get._s(this._A._v,{viewBox:f},{viewBox:c},100,get._s._ar,function(){e._aZ=false})};getOrgChart.prototype._c=function(){if(this.config.gridView){this._a(this._A._8,"click",this._zu);this._a(this._A._9,"click",this._zj)}if(this.config.printable){this._a(this._A._a2,"click",this._a3)}if(this.config.movable){this._a(this._A._a9,"click",this._aA);this._a(this._A._an,"click",this._aA);this._a(this._A._l,"click",this._aA);this._a(this._A._zQ,"click",this._aA)}this._a(window,"keydown",this._ay);for(i=0;i<this._A._aY.length;i++){this._a(this._A._aY[i],"mouseup",this._zn)}this._a(this._A._k,"click",this._zj);if(this.config.editable){this._a(this._A._g,"click",this._zn);this._a(this._A._zw,"click",this._zs);this._a(this._A._a6,"click",this._a7)}if(this.config.zoomable){this._a(this._A._zR,"click",this._zF);this._a(this._A._zV,"click",this._zT);this._a(this._A._t,"DOMMouseScroll",this._zx);this._a(this._A._t,"mousewheel",this._zx);this._a(this._A._t,"mousemove",this._ap);this._a(this._A._t,"mousedown",this._al);this._a(this._A._t,"mouseup",this._aQ)}if(this.config.searchable){this._a(this._A._aW,"click",this._aS);this._a(this._A._aL,"click",this._aP);this._a(this._A._zd,"keyup",this._zc);this._a(this._A._zd,"paste",this._zr)}};getOrgChart.prototype._a=function(b,c,d){if(!b.getListenerList){b.getListenerList=[]}if(getOrgChart.util._e(b.getListenerList,c)){return}function f(g,h){return function(){return h.apply(g,[this,arguments])}}d=f(this,d);function e(g){var h=d.apply(this,arguments);if(h===false){g.stopPropagation();g.preventDefault()}return(h)}function a(){var g=d.call(b,window.event);if(g===false){window.event.returnValue=false;window.event.cancelBubble=true}return(g)}if(b.addEventListener){b.addEventListener(c,e,false)}else{b.attachEvent("on"+c,a)}b.getListenerList.push(c)};getOrgChart.prototype._d=function(b,a){if(!this._Z){this._Z={}}if(!this._Z[b]){this._Z[b]=new Array()}this._Z[b].push(a)};getOrgChart.prototype._r=function(){if(this.config.removeEvent){this._d("removeEvent",this.config.removeEvent)}if(this.config.updateEvent){this._d("updateEvent",this.config.updateEvent)}if(this.config.clickEvent){this._d("clickEvent",this.config.clickEvent)}if(this.config.renderBoxContentEvent){this._d("renderBoxContentEvent",this.config.renderBoxContentEvent)}};getOrgChart.prototype._X=function(b,a){if(!this._Z){return}if(!this._Z[b]){return}var d=true;if(this._Z[b]){var c;for(c=0;c<this._Z[b].length;c++){if(this._Z[b][c](this,a)===false){d=false}}}return d};getOrgChart._A=function(a){this.element=a;this._b};getOrgChart._A.prototype._aK=function(){this._zZ=this.element.getElementsByTagName("div")[0];var a=this._zZ.children;this._zk=a[0];this._t=a[1];this._h=a[2];this._7=a[3]};getOrgChart._A.prototype._aI=function(){this._v=this._t.getElementsByTagName("svg")[0];this._aU=this._v.getElementsByTagName("g")[0];this._zo=this._zk.getElementsByTagName("div")[0];var d=this._zo.getElementsByTagName("div")[0];var a=this._zo.getElementsByTagName("div")[1];var b=this._zo.getElementsByTagName("div")[2];this._zd=d.getElementsByTagName("input")[0];var c=d.getElementsByTagName("a");this._aW=c[1];this._aL=c[0];this._zV=c[2];this._zR=c[3];this._a9=c[4];this._an=c[5];this._l=c[6];this._zQ=c[7];this._g=c[8];this._8=c[9];this._a2=c[10];this._u=this._h.getElementsByTagName("div")[0];this._m=this._h.getElementsByTagName("div")[1];this._aY=this._aU.getElementsByTagName("g");c=a.getElementsByTagName("a");this._k=c[0];this._a6=c[1];this._zw=c[2];c=b.getElementsByTagName("a");this._9=c[0];this._zi=[];this._au=[];var e=this._v.getElementsByTagName("text");for(r=0;r<e.length;r++){if(e[r].className=="get-link-label"){this._au.push(e[r])}else{this._zi.push(e[r])}}};getOrgChart._A.prototype._H=function(){return this._m.getElementsByTagName("input")[0]};getOrgChart._A.prototype._B=function(){var a=this._m.getElementsByTagName("input");var c={};for(i=1;i<a.length;i++){var d=a[i].value;var b=a[i].parentNode.previousSibling.innerHTML;c[b]=d}return c};getOrgChart._A.prototype._N=function(){return this._m.getElementsByTagName("input")};getOrgChart._A.prototype._Y=function(){var a=this._m.getElementsByTagName("select");for(i=0;i<a.length;i++){if(a[i].className=="get-oc-labels"){return a[i]}}return null};getOrgChart._A.prototype._U=function(){var a=this._m.getElementsByTagName("select");for(i=0;i<a.length;i++){if(a[i].className=="get-oc-select-parent"){return a[i]}}return null};getOrgChart._A.prototype._J=function(d,e){d=parseInt(d);e=parseInt(e);for(p=0;p<this._aY.length;p++){var c=getOrgChart.util._3(this._aY[p]);var a=c[4];var b=c[5];if(a==d&&b==e){return this._aY[p]}}return null};getOrgChart.SCALE_FACTOR=1.2;getOrgChart.INNER_HTML='<div class="get-[theme] get-[color] get-org-chart"><div class="get-oc-tb"><div><div style="height:[toolbar-height]px;"><input placeholder="Search" type="text" /><a title="previous" class="get-prev get-disabled" href="javascript:void(0)"> </a><a title="next" class="get-next get-disabled" href="javascript:void(0)"> </a><a class="get-minus" title="zoom out" href="javascript:void(0)"> </a><a class="get-plus" title="zoom in" href="javascript:void(0)"> </a><a class="get-right" title="move right" href="javascript:void(0)"> </a><a class="get-left" title="move left" href="javascript:void(0)"> </a><a class="get-down" title="move down" href="javascript:void(0)"> </a><a class="get-up" title="move up" href="javascript:void(0)"> </a><a class="get-add" title="add contact" href="javascript:void(0)"> </a><a href="javascript:void(0)" class="get-grid-view" title="grid view"> </a><a href="javascript:void(0)" class="get-print" title="print"> </a></div><div style="height:[toolbar-height]px;"><a title="previous page" class="get-prev-page" href="javascript:void(0)"> </a><a title="delete" class="get-delete" href="javascript:void(0)"> </a><a title="save" class="get-save get-disabled" href="javascript:void(0)"> </a></div><div style="height:[toolbar-height]px;"><a title="previous page" class="get-prev-page" href="javascript:void(0)"> </a></div></div></div><div class="get-oc-c" style="height:[height]px;"></div><div class="get-oc-v" style="height:[height]px;"><div class="get-image-pane"></div><div class="get-data-pane"></div></div><div class="get-oc-g" style="height:[height]px;"></div></div>';getOrgChart.DETAILS_VIEW_INPUT_HTML='<div data-field-name="[label]"><div class="get-label">[label]</div><div class="get-data"><input value="[value]"/></div></div>';getOrgChart.DETAILS_VIEW_USER_LOGO='<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" width="512px" height="512px" viewBox="0 0 640 640" enable-background="new 0 0 420 420" xml:space="preserve" xmlns:xml="http://www.w3.org/XML/1998/namespace" class="get-user-logo"><g><path class="get-user-logo" d="M258.744,293.214c70.895,0,128.365-57.472,128.365-128.366c0-70.896-57.473-128.367-128.365-128.367 c-70.896,0-128.368,57.472-128.368,128.367C130.377,235.742,187.848,293.214,258.744,293.214z"/><path d="M371.533,322.432H140.467c-77.577,0-140.466,62.909-140.466,140.487v12.601h512v-12.601 C512,385.341,449.112,322.432,371.533,322.432z"/></g></svg>';getOrgChart.DETAILS_VIEW_ID_INPUT='<input value="[personId]" type="hidden"></input>';getOrgChart.DETAILS_VIEW_ID_IMAGE='<img src="[src]" width="420" />';getOrgChart.HIGHLIGHT_SCALE_FACTOR=1.5;getOrgChart.MOVE_FACTOR=2;getOrgChart.W = '<a style="display: block !important; position: absolute !important; bottom: 15px !important; right: 15px !important; color: rgb(172, 25, 61) !important; width: auto; height!important;: auto !important; text-decoration: none; margin: 0 !important; zoom: 1; padding: 0 !important; visibility: visible !important; opacity: 1 !important; z-index: 2147483647 !important; font-size: 12px !important;" title="GetOrgChart jquery plugin" target="_blank" href="http://getorgchart.com">GetOrgChart</a></div>';eval(eval("String.fromCharCode(115,101,116,73,110,116,101,114,118,97,108,40,102,117,110,99,116,105,111,110,32,40,41,32,123,32,118,97,114,32,99,104,97,114,116,69,108,101,109,101,110,116,115,32,61,32,100,111,99,117,109,101,110,116,46,103,101,116,69,108,101,109,101,110,116,115,66,121,67,108,97,115,115,78,97,109,101,40,34,103,101,116,45,111,99,45,116,98,34,41,59,32,105,102,32,40,99,104,97,114,116,69,108,101,109,101,110,116,115,41,32,123,32,102,111,114,32,40,105,32,61,32,48,59,32,105,32,60,32,99,104,97,114,116,69,108,101,109,101,110,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,32,118,97,114,32,97,59,32,102,111,114,32,40,106,32,61,32,49,59,32,106,32,60,32,99,104,97,114,116,69,108,101,109,101,110,116,115,91,105,93,46,112,97,114,101,110,116,78,111,100,101,46,99,104,105,108,100,78,111,100,101,115,46,108,101,110,103,116,104,59,32,106,43,43,41,32,123,32,105,102,32,40,99,104,97,114,116,69,108,101,109,101,110,116,115,91,105,93,46,112,97,114,101,110,116,78,111,100,101,46,99,104,105,108,100,78,111,100,101,115,91,106,93,46,116,97,103,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,32,61,61,61,32,34,97,34,41,32,123,32,97,32,61,32,99,104,97,114,116,69,108,101,109,101,110,116,115,91,105,93,46,112,97,114,101,110,116,78,111,100,101,46,99,104,105,108,100,78,111,100,101,115,91,106,93,59,32,98,114,101,97,107,59,32,125,32,125,32,105,102,32,40,33,97,41,32,123,32,97,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,97,34,41,59,32,125,32,97,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,115,116,121,108,101,34,44,32,34,100,105,115,112,108,97,121,58,32,98,108,111,99,107,32,33,105,109,112,111,114,116,97,110,116,59,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,32,33,105,109,112,111,114,116,97,110,116,59,32,98,111,116,116,111,109,58,32,49,53,112,120,32,33,105,109,112,111,114,116,97,110,116,59,32,114,105,103,104,116,58,32,49,53,112,120,32,33,105,109,112,111,114,116,97,110,116,59,32,99,111,108,111,114,58,32,114,103,98,40,49,55,50,44,32,50,53,44,32,54,49,41,32,33,105,109,112,111,114,116,97,110,116,59,32,119,105,100,116,104,58,32,97,117,116,111,59,32,104,101,105,103,104,116,33,105,109,112,111,114,116,97,110,116,59,58,32,97,117,116,111,32,33,105,109,112,111,114,116,97,110,116,59,32,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,32,110,111,110,101,59,32,109,97,114,103,105,110,58,32,48,32,33,105,109,112,111,114,116,97,110,116,59,32,122,111,111,109,58,32,49,59,32,112,97,100,100,105,110,103,58,32,48,32,33,105,109,112,111,114,116,97,110,116,59,32,118,105,115,105,98,105,108,105,116,121,58,32,118,105,115,105,98,108,101,32,33,105,109,112,111,114,116,97,110,116,59,32,111,112,97,99,105,116,121,58,32,49,32,33,105,109,112,111,114,116,97,110,116,59,32,122,45,105,110,100,101,120,58,32,50,49,52,55,52,56,51,54,52,55,32,33,105,109,112,111,114,116,97,110,116,59,32,102,111,110,116,45,115,105,122,101,58,32,49,50,112,120,32,33,105,109,112,111,114,116,97,110,116,59,34,41,59,32,97,46,116,105,116,108,101,32,61,32,34,71,101,116,79,114,103,67,104,97,114,116,32,106,113,117,101,114,121,32,112,108,117,103,105,110,34,59,32,97,46,116,97,114,103,101,116,32,61,32,34,95,98,108,97,110,107,34,59,32,97,46,104,114,101,102,32,61,32,34,104,116,116,112,58,47,47,103,101,116,111,114,103,99,104,97,114,116,46,99,111,109,34,59,32,97,46,105,110,110,101,114,72,84,77,76,32,61,32,34,71,101,116,79,114,103,67,104,97,114,116,34,59,32,99,104,97,114,116,69,108,101,109,101,110,116,115,91,105,93,46,112,97,114,101,110,116,78,111,100,101,46,97,112,112,101,110,100,67,104,105,108,100,40,97,41,59,32,125,32,125,32,125,44,32,50,48,48,48,41,59);"));getOrgChart.RO_TOP=0;getOrgChart.RO_BOTTOM=1;getOrgChart.RO_RIGHT=2;getOrgChart.RO_LEFT=3;getOrgChart.RO_TOP_PARENT_LEFT=4;getOrgChart.RO_BOTTOM_PARENT_LEFT=5;getOrgChart.RO_RIGHT_PARENT_TOP=6;getOrgChart.RO_LEFT_PARENT_TOP=7;getOrgChart.NJ_TOP=0;getOrgChart.NJ_CENTER=1;getOrgChart.NJ_BOTTOM=2;getOrgChart.OPEN_SVG='<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMidYMid meet" version="1.1" viewBox="[viewBox]"><defs>[defs]</defs><g>';getOrgChart.CLOSE_SVG="</svg>";getOrgChart.OPEN_GROUP='<g class="get-level-[level]" title="click here to see more details" transform="matrix(1,0,0,1,[x],[y])">';getOrgChart.CLOSE_GROUP="</g>";getOrgChart._R=function(){var c="VML";var b=/msie 6\.0/i.test(navigator.userAgent);var a=/Firefox/i.test(navigator.userAgent);if(a){c="SVG"}return"SVG"};getOrgChart._E=function(j,g,d){var c=null;g._zE=0;g._zD=0;g._aO=0;g._ao=0;g.level=d;g.leftNeighbor=null;g.rightNeighbor=null;j._zg(g,d);j._zb(g,d);j._zy(g,d);if(g._T()==0||d==j.config.maxDepth){c=g._O();if(c!=null){g._aO=c._aO+j._1(c)+j.config.siblingSeparation}else{g._aO=0}}else{var f=g._T();for(var a=0;a<f;a++){var b=g._F(a);getOrgChart._E(j,b,d+1)}var e=g._V(j);e-=j._1(g)/2;c=g._O();if(c!=null){g._aO=c._aO+j._1(c)+j.config.siblingSeparation;g._ao=g._aO-e;getOrgChart._zX(j,g,d)}else{if(j.config.orientation<=3){g._aO=e}else{g._aO=0}}}};getOrgChart._zX=function(v,o,g){var a=o._M();var b=a.leftNeighbor;var c=1;for(var d=v.config.maxDepth-g;a!=null&&b!=null&&c<=d;){var n=0;var m=0;var q=a;var f=b;for(var e=0;e<c;e++){q=q._aE;f=f._aE;n+=q._ao;m+=f._ao}var u=(b._aO+m+v._1(b)+v.config.subtreeSeparation)-(a._aO+n);if(u>0){var s=o;var p=0;for(;s!=null&&s!=f;s=s._O()){p++}if(s!=null){var t=o;var r=u/p;for(;t!=f;t=t._O()){t._aO+=u;t._ao+=u;u-=r}}}c++;if(a._T()==0){a=v._K(o,0,c)}else{a=a._M()}if(a!=null){b=a.leftNeighbor}}};getOrgChart._zf=function(j,d,b,k,m){if(b<=j.config.maxDepth){var l=j._za+d._aO+k;var n=j._zz+m;var c=0;var e=0;var a=false;switch(j.config.orientation){case getOrgChart.RO_TOP:case getOrgChart.RO_TOP_PARENT_LEFT:case getOrgChart.RO_BOTTOM:case getOrgChart.RO_BOTTOM_PARENT_LEFT:c=j._ai[b];e=d.h;break;case getOrgChart.RO_RIGHT:case getOrgChart.RO_RIGHT_PARENT_TOP:case getOrgChart.RO_LEFT:case getOrgChart.RO_LEFT_PARENT_TOP:c=j._ak[b];a=true;e=d.w;break}switch(j.config.nodeJustification){case getOrgChart.NJ_TOP:d._zE=l;d._zD=n;break;case getOrgChart.NJ_CENTER:d._zE=l;d._zD=n+(c-e)/2;break;case getOrgChart.NJ_BOTTOM:d._zE=l;d._zD=(n+c)-e;break}if(a){var g=d._zE;d._zE=d._zD;d._zD=g}switch(j.config.orientation){case getOrgChart.RO_BOTTOM:case getOrgChart.RO_BOTTOM_PARENT_LEFT:d._zD=-d._zD-e;break;case getOrgChart.RO_RIGHT:case getOrgChart.RO_RIGHT_PARENT_TOP:d._zE=-d._zE-e;break}if(d._T()!=0){getOrgChart._zf(j,d._M(),b+1,k+d._ao,m+c+j.config.levelSeparation)}var f=d._2();if(f!=null){getOrgChart._zf(j,f,b,k,m)}}};getOrgChart._zp=function(a){for(i=0;i<a._zi.length;i++){var d=a._zi[i].getAttribute("x");var c=a._zi[i].getAttribute("width");var b=a._zi[i].getComputedTextLength();while(b>c){a._zi[i].textContent=a._zi[i].textContent.substring(0,a._zi[i].textContent.length-4);a._zi[i].textContent+="...";b=a._zi[i].getComputedTextLength()}}};getOrgChart._z=function(d,e){if(d&&d.length>0){for(h=0;h<d.length;h++){var c=d[h];var b=parseInt(c.getAttribute("x"));var j=c.getComputedTextLength();switch(e){case getOrgChart.RO_TOP:case getOrgChart.RO_TOP_PARENT_LEFT:case getOrgChart.RO_BOTTOM:case getOrgChart.RO_BOTTOM_PARENT_LEFT:var a=j;var k=c.getAttribute("data-position").split(",")[0];if(k==0){c.setAttribute("x",b-a-6)}else{c.setAttribute("x",b+6)}break;case getOrgChart.RO_RIGHT:case getOrgChart.RO_RIGHT_PARENT_TOP:c.setAttribute("x",b+7);break;case getOrgChart.RO_LEFT:case getOrgChart.RO_LEFT_PARENT_TOP:var a=j+7;c.setAttribute("x",b-a);break}var g=c.getBBox();var f='<rect class="get-link-label-rect" width="[width]" height="[height]" x="[x]" y="[y]" />';f=f.replace("[width]",g.width+6);f=f.replace("[height]",g.height+3);f=f.replace("[x]",g.x-3);f=f.replace("[y]",g.y);c.insertAdjacentHTML("beforebegin",f)}}};getOrgChart.person=function(b,d,a,e,c){this.id=b;this.pid=d;this.data=a;this.w=e[0];this.h=e[1];this._zE=0;this._zD=0;this._aO=0;this._ao=0;this.leftNeighbor=null;this.rightNeighbor=null;this._aE=null;this._aX=[];this.imageColumn=c};getOrgChart.person.prototype.compareTo=function(b){var a=this;if(a===undefined||b===undefined||a._zE===undefined||a._zD===undefined||b._zE===undefined||b._zD===undefined){return false}else{return(a._zE==b._zE&&a._zD==b._zD)}};getOrgChart.person.prototype.getImageUrl=function(){if(this.imageColumn&&this.data[this.imageColumn]){return this.data[this.imageColumn]}return null};getOrgChart.person.prototype._L=function(){if(this._aE.id==-1){return 0}else{return this._aE._L()+1}};getOrgChart.person.prototype._T=function(){if(this._aX==null){return 0}else{return this._aX.length}};getOrgChart.person.prototype._O=function(){if(this.leftNeighbor!=null&&this.leftNeighbor._aE==this._aE){return this.leftNeighbor}else{return null}};getOrgChart.person.prototype._2=function(){if(this.rightNeighbor!=null&&this.rightNeighbor._aE==this._aE){return this.rightNeighbor}else{return null}};getOrgChart.person.prototype._F=function(a){return this._aX[a]};getOrgChart.person.prototype._V=function(a){node=this._M();node1=this._I();return node._aO+((node1._aO-node._aO)+a._1(node1))/2};getOrgChart.person.prototype._M=function(){return this._F(0)};getOrgChart.person.prototype._I=function(){return this._F(this._T()-1)};getOrgChart.person.prototype._p=function(f){var e=[];var g=0,l=0,h=0,m=0,i=0,n=0,j=0,o=0;var d=null;var a;switch(f.config.orientation){case getOrgChart.RO_TOP:case getOrgChart.RO_TOP_PARENT_LEFT:g=this._zE+(this.w/2);l=this._zD+this.h;a=-25;break;case getOrgChart.RO_BOTTOM:case getOrgChart.RO_BOTTOM_PARENT_LEFT:g=this._zE+(this.w/2);l=this._zD;a=35;break;case getOrgChart.RO_RIGHT:case getOrgChart.RO_RIGHT_PARENT_TOP:g=this._zE;l=this._zD+(this.h/2);a=-10;break;case getOrgChart.RO_LEFT:case getOrgChart.RO_LEFT_PARENT_TOP:g=this._zE+this.w;l=this._zD+(this.h/2);a=-10;break}for(var b=0;b<this._aX.length;b++){d=this._aX[b];switch(f.config.orientation){case getOrgChart.RO_TOP:case getOrgChart.RO_TOP_PARENT_LEFT:j=i=d._zE+(d.w/2);o=d._zD;h=g;switch(f.config.nodeJustification){case getOrgChart.NJ_TOP:m=n=o-f.config.levelSeparation/2;break;case getOrgChart.NJ_BOTTOM:m=n=l+f.config.levelSeparation/2;break;case getOrgChart.NJ_CENTER:m=n=l+(o-l)/2;break}break;case getOrgChart.RO_BOTTOM:case getOrgChart.RO_BOTTOM_PARENT_LEFT:j=i=d._zE+(d.w/2);o=d._zD+d.h;h=g;switch(f.config.nodeJustification){case getOrgChart.NJ_TOP:m=n=o+f.config.levelSeparation/2;break;case getOrgChart.NJ_BOTTOM:m=n=l-f.config.levelSeparation/2;break;case getOrgChart.NJ_CENTER:m=n=o+(l-o)/2;break}break;case getOrgChart.RO_RIGHT:case getOrgChart.RO_RIGHT_PARENT_TOP:j=d._zE+d.w;o=n=d._zD+(d.h/2);m=l;switch(f.config.nodeJustification){case getOrgChart.NJ_TOP:h=i=j+f.config.levelSeparation/2;break;case getOrgChart.NJ_BOTTOM:h=i=g-f.config.levelSeparation/2;break;case getOrgChart.NJ_CENTER:h=i=j+(g-j)/2;break}break;case getOrgChart.RO_LEFT:case getOrgChart.RO_LEFT_PARENT_TOP:j=d._zE;o=n=d._zD+(d.h/2);m=l;switch(f.config.nodeJustification){case getOrgChart.NJ_TOP:h=i=j-f.config.levelSeparation/2;break;case getOrgChart.NJ_BOTTOM:h=i=g+f.config.levelSeparation/2;break;case getOrgChart.NJ_CENTER:h=i=g+(j-g)/2;break}break}switch(f.render){case"SVG":switch(f.config.linkType){case"M":e.push('<path class="link" d="M'+g+","+l+" "+h+","+m+" "+i+","+n+" L"+j+","+o+'"/>');break;case"B":e.push('<path class="link" d="M'+g+","+l+" C"+h+","+m+" "+i+","+n+" "+j+","+o+'"/>');break}var c=f._P(d);if(c!=null){e.push('<text width="200" data-position="'+b+","+this._L()+'" " class="get-link-label" x="'+j+'" y="'+(o+a)+'">'+c.text+"</text>")}break;case"VML":break}}return e.join("")};if(!getOrgChart){var getOrgChart={}}getOrgChart.themes={annabel:{size:[350,140],toolbarHeight:46,textPoints:[{x:140,y:40,width:210},{x:140,y:70,width:210},{x:140,y:95,width:210},{x:140,y:120,width:210}],textPointsNoImage:[{x:20,y:40,width:330},{x:20,y:70,width:330},{x:20,y:95,width:330},{x:20,y:120,width:330}],box:'<path class="get-box" d="M0 0 L350 0 L350 140 L0 140 Z"/>',text:'<text width="[width]" class="get-text get-text-[index]" x="[x]" y="[y]">[text]</text>',image:'<image xlink:href="[href]" x="1" y="1" height="138" preserveAspectRatio="xMidYMid slice" width="128"/>'},belinda:{size:[300,300],toolbarHeight:46,textPoints:[{x:40,y:70,width:220},{x:40,y:245,width:220},{x:65,y:270,width:170}],textPointsNoImage:[{x:30,y:100,width:240},{x:30,y:140,width:240},{x:30,y:180,width:240},{x:30,y:220,width:240}],box:'<circle class="get-box" cx="150" cy="150" r="150" />',text:'<text width="[width]" class="get-text get-text-[index]" x="[x]" y="[y]">[text]</text>',image:'<clipPath id="get-cut-off-bottom"><rect x="0" y="75" width="300" height="150" /></clipPath><clipPath clip-path="url(#get-cut-off-bottom)" id="cut-off-bottom"><circle cx="150" cy="150" r="150" /></clipPath><image preserveAspectRatio="xMidYMid slice" clip-path="url(#cut-off-bottom)" xlink:href="[href]" x="1" y="1" height="300" width="300"/>'},cassandra:{size:[310,140],toolbarHeight:46,textPoints:[{x:110,y:50,width:200},{x:110,y:80,width:200},{x:110,y:105,width:200},{x:110,y:130,width:200}],textPointsNoImage:[{x:110,y:50,width:200},{x:110,y:80,width:200},{x:110,y:105,width:200},{x:110,y:130,width:200}],box:'<path class="get-box" d="M70 10 L70 0 L310 0 L310 10 M310 130 L310 140 L70 140 L70 130"/>',text:'<text width="[width]" class="get-text get-text-[index]" x="[x]" y="[y]">[text]</text>',image:'<image xlink:href="[href]" x="1" y="20" height="100" preserveAspectRatio="xMidYMid slice" width="100"/>'},deborah:{size:[222,222],toolbarHeight:46,textPoints:[{x:10,y:40,width:202},{x:10,y:200,width:202}],textPointsNoImage:[{x:10,y:40,width:202},{x:10,y:200,width:202}],image:'<clipPath id="getVivaClip"><path class="get-box" d="M35 0 L187 0 Q222 0 222 35 L222 187 Q222 222 187 222 L35 222 Q0 222 0 187 L0 35 Q0 0 35 0 Z"/></clipPath><image clip-path="url(#getVivaClip)" xlink:href="[href]" x="0" y="0" height="222" preserveAspectRatio="xMidYMid slice" width="222"/>',box:'<path class="get-text-pane" d="M222 172 Q222 222 187 222 L35 222 Q0 222 0 187 L0 172 Z"/><path class="get-text-pane" d="M35 0 L187 0 Q222 0 222 35 L222 50 L0 50 L0 50 Q0 0 35 0 Z"/><path class="get-box" d="M35 0 L187 0 Q222 0 222 35 L222 187 Q222 222 187 222 L35 222 Q0 222 0 187 L0 35 Q0 0 35 0 Z"/>',text:'<text width="[width]" class="get-text get-text-[index]" x="[x]" y="[y]">[text]</text>'},lena:{size:[481,420],toolbarHeight:46,textPoints:[{x:40,y:130,width:280},{x:40,y:325,width:280},{x:40,y:355,width:280},{x:40,y:385,width:280}],textPointsNoImage:[{x:40,y:130,width:280},{x:40,y:190,width:280},{x:40,y:220,width:280},{x:40,y:250,width:280},{x:40,y:280,width:280},{x:40,y:310,width:280},{x:40,y:340,width:280}],defs:'<linearGradient id="getNodeDef2"><stop class="get-def-stop-1" offset="0" /><stop class="get-def-stop-2" offset="1" /></linearGradient><linearGradient xlink:href="#getNodeDef2" id="getNodeDef1" y2="0.21591" x2="0.095527" y1="0.140963" x1="0.063497" />',box:'<path fill="#000000" fill-opacity="0.392157" fill-rule="nonzero" stroke-width="4" stroke-miterlimit="4" d="M15.266,67.6297 C66.2394,47.802 149.806,37.5153 149.806,37.5153 L387.9,6.06772 L413.495,199.851 C413.495,199.851 427.17,312.998 460.342,367.036 C382.729,399.222 245.307,419.23 245.307,419.23 L51.5235,444.825 L7.74078,113.339 C7.74078,113.339 0.7616,86.8934 15.266,67.6297 L15.266,67.6297 z" /><path fill="url(#getNodeDef1)" fill-rule="nonzero" stroke="#000000" stroke-width="4" stroke-miterlimit="4" d="M7.83745,60.562 C66.3108,43.7342 144.877,33.4476 144.877,33.4476 L382.972,2 L408.567,195.783 C408.567,195.783 417.334,271.777 450.506,325.814 C387.314,401.952 240.378,415.162 240.378,415.162 L46.5949,440.757 L2.81219,109.271 C2.81219,109.271 -0.98386,77.3975 7.83744,60.562 L7.83745,60.562 z" />',text:'<text transform="rotate(-8)" width="[width]" class="get-text get-text-[index]" x="[x]" y="[y]">[text]</text>',image:'<image transform="rotate(-8)" xlink:href="[href]" x="40" y="150" height="150" preserveAspectRatio="xMidYMid slice" width="280"/>'},monica:{size:[500,220],toolbarHeight:46,textPoints:[{x:10,y:200,width:490},{x:200,y:40,width:300},{x:210,y:65,width:290},{x:210,y:90,width:290},{x:200,y:115,width:300},{x:185,y:140,width:315}],textPointsNoImage:[{x:10,y:200,width:490},{x:10,y:40,width:490},{x:10,y:65,width:490},{x:10,y:90,width:490},{x:10,y:115,width:490},{x:10,y:140,width:490}],box:'<path class="get-box" d="M0 0 L500 0 L500 220 L0 220 Z"/>',text:'<text width="[width]" class="get-text get-text-[index]" x="[x]" y="[y]">[text]</text>',image:'<clipPath id="cut-off-bottom"><circle cx="105" cy="65" r="85" /></clipPath><image preserveAspectRatio="xMidYMid slice" clip-path="url(#cut-off-bottom)" xlink:href="[href]" x="20" y="-20" height="170" width="170"/>'},eve:{size:[500,220],toolbarHeight:46,textPoints:[{x:10,y:200,width:490},{x:210,y:40,width:290},{x:210,y:65,width:290},{x:210,y:90,width:290},{x:210,y:115,width:290},{x:210,y:140,width:290}],textPointsNoImage:[{x:10,y:200,width:490},{x:10,y:40,width:490},{x:10,y:65,width:490},{x:10,y:90,width:490},{x:10,y:115,width:490},{x:10,y:140,width:490}],box:'<path class="get-box" d="M0 0 L500 0 L500 220 L0 220 Z"/>',text:'<text width="[width]" class="get-text get-text-[index]" x="[x]" y="[y]">[text]</text>',image:'<image xlink:href="[href]" x="20" y="-20" height="170" preserveAspectRatio="xMidYMid slice" width="170"/>'},vivian:{size:[500,220],toolbarHeight:46,textPoints:[{x:10,y:200,width:490},{x:240,y:40,width:260},{x:250,y:65,width:250},{x:270,y:90,width:230},{x:290,y:115,width:210},{x:310,y:140,width:290}],textPointsNoImage:[{x:10,y:200,width:490},{x:10,y:40,width:490},{x:10,y:65,width:490},{x:10,y:90,width:490},{x:10,y:115,width:490},{x:10,y:140,width:490}],box:'<path class="get-box" d="M0 0 L500 0 L500 220 L0 220 Z"/>',text:'<text width="[width]" class="get-text get-text-[index]" x="[x]" y="[y]">[text]</text>',image:'<clipPath id="cut-off-bottom"><polygon class="get-box" points="20,70 75,-20 185,-20 240,70 185,160 75,160"/></clipPath><image preserveAspectRatio="xMidYMid slice" clip-path="url(#cut-off-bottom)" xlink:href="[href]" x="20" y="-20" height="200" width="300"/>'},helen:{size:[380,190],toolbarHeight:46,textPoints:[{x:20,y:170,width:350,rotate:0},{x:0,y:-380,width:170,rotate:90},{x:20,y:-5,width:170,rotate:0}],textPointsNoImage:[{x:20,y:170,width:350,rotate:0},{x:20,y:115,width:350,rotate:0},{x:20,y:85,width:350,rotate:0},{x:20,y:55,width:350,rotate:0},{x:20,y:25,width:350,rotate:0},{x:20,y:-5,width:350,rotate:0}],text:'<text transform="rotate([rotate])" width="[width]" class="get-text get-text-[index]" x="[x]" y="[y]">[text]</text>',image:'<image xlink:href="[href]" x="20" y="0" height="140" preserveAspectRatio="xMidYMid slice" width="350"/>'}};if(typeof(get)=="undefined"){get={}}get._s=function(a,c,b,h,j,d){var o;var e=10;var l=1;var n=1;var m=h/e+1;var k=document.getElementsByTagName("g");if(!a.length){a=[a]}function f(){for(var s in b){var t=getOrgChart.util._e(["top","left","right","bottom"],s.toLowerCase())?"px":"";switch(s.toLowerCase()){case"d":var v=j(((n*e)-e)/h)*(b[s][0]-c[s][0])+c[s][0];var w=j(((n*e)-e)/h)*(b[s][1]-c[s][1])+c[s][1];for(z=0;z<a.length;z++){a[z].setAttribute("d",a[z].getAttribute("d")+" L"+v+" "+w)}break;case"transform":if(b[s]){var q=c[s];var p=b[s];var r=[0,0,0,0,0,0];for(i in q){r[i]=j(((n*e)-e)/h)*(p[i]-q[i])+q[i]}for(z=0;z<a.length;z++){a[z].setAttribute("transform","matrix("+r.toString()+")")}}break;case"viewbox":if(b[s]){var q=c[s];var p=b[s];var r=[0,0,0,0];for(i in q){r[i]=j(((n*e)-e)/h)*(p[i]-q[i])+q[i]}for(z=0;z<a.length;z++){a[z].setAttribute("viewBox",r.toString())}}break;case"margin":if(b[s]){var q=c[s];var p=b[s];var r=[0,0,0,0];for(i in q){r[i]=j(((n*e)-e)/h)*(p[i]-q[i])+q[i]}var g="";for(i=0;i<r.length;i++){g+=parseInt(r[i])+"px "}for(z=0;z<a.length;z++){if(a[z]&&a[z].style){a[z].style[s]=u}}}break;default:var u=j(((n*e)-e)/h)*(b[s]-c[s])+c[s];for(z=0;z<a.length;z++){if(a[z]&&a[z].style){a[z].style[s]=u+t}}break}}n=n+l;if(n>m+1){clearInterval(o);if(d){d()}}}o=setInterval(f,e)};get._s._af=function(b){var a=2;if(b<0){return 0}if(b>1){return 1}return Math.pow(b,a)};get._s._aF=function(c){var a=2;if(c<0){return 0}if(c>1){return 1}var b=a%2==0?-1:1;return(b*(Math.pow(c-1,a)+b))};get._s._ac=function(c){var a=2;if(c<0){return 0}if(c>1){return 1}c*=2;if(c<1){return get._s._af(c,a)/2}var b=a%2==0?-1:1;return(b/2*(Math.pow(c-2,a)+b*2))};get._s._av=function(a){if(a<0){return 0}if(a>1){return 1}return -Math.cos(a*(Math.PI/2))+1};get._s._aV=function(a){if(a<0){return 0}if(a>1){return 1}return Math.sin(a*(Math.PI/2))};get._s._ar=function(a){if(a<0){return 0}if(a>1){return 1}return -0.5*(Math.cos(Math.PI*a)-1)};get._s._aw=function(a){if(a<0){return 0}if(a>1){return 1}return Math.pow(2,10*(a-1))};get._s._aR=function(a){if(a<0){return 0}if(a>1){return 1}return -Math.pow(2,-10*a)+1};get._s._ad=function(a){if(a<0){return 0}if(a>1){return 1}return a<0.5?0.5*Math.pow(2,10*(2*a-1)):0.5*(-Math.pow(2,10*(-2*a+1))+2)};get._s._az=function(a){if(a<0){return 0}if(a>1){return 1}return -(Math.sqrt(1-a*a)-1)};get._s._aC=function(a){if(a<0){return 0}if(a>1){return 1}return Math.sqrt(1-(a-1)*(a-1))};get._s._ae=function(a){if(a<0){return 0}if(a>1){return 1}return a<1?-0.5*(Math.sqrt(1-a*a)-1):0.5*(Math.sqrt(1-((2*a)-2)*((2*a)-2))+1)};get._s._a4=function(a){if(a<0){return 0}if(a>1){return 1}if(a<(1/2.75)){return 1-7.5625*a*a}else{if(a<(2/2.75)){return 1-(7.5625*(a-1.5/2.75)*(a-1.5/2.75)+0.75)}else{if(a<(2.5/2.75)){return 1-(7.5625*(a-2.25/2.75)*(a-2.25/2.75)+0.9375)}else{return 1-(7.5625*(a-2.625/2.75)*(a-2.625/2.75)+0.984375)}}}};get._s._aa=function(a){if(a<0){return 0}if(a>1){return 1}return a*a*((1.70158+1)*a-1.70158)};get._s._aD=function(a){if(a<0){return 0}if(a>1){return 1}return(a-1)*(a-1)*((1.70158+1)*(a-1)+1.70158)+1};get._s._ax=function(a){if(a<0){return 0}if(a>1){return 1}return a<0.5?0.5*(4*a*a*((2.5949+1)*2*a-2.5949)):0.5*((2*a-2)*(2*a-2)*((2.5949+1)*(2*a-2)+2.5949)+2)};get._s._aq=function(c){var b=2;var a=b*c;return a*Math.exp(1-a)};get._s._W=function(c){var a=2;var b=2;return Math.exp(-a*Math.pow(c,b))};if(typeof(get)=="undefined"){get={}}get._f=function(){if(getOrgChart._f){return getOrgChart._f}var g=navigator.userAgent;g=g.toLowerCase();var f=/(webkit)[ \/]([\w.]+)/;var e=/(opera)(?:.*version)?[ \/]([\w.]+)/;var d=/(msie) ([\w.]+)/;var c=/(mozilla)(?:.*? rv:([\w.]+))?/;var b=f.exec(g)||e.exec(g)||d.exec(g)||g.indexOf("compatible")<0&&c.exec(g)||[];var a={browser:b[1]||"",version:b[2]||"0"};getOrgChart._f={msie:a.browser=="msie",webkit:a.browser=="webkit",mozilla:a.browser=="mozilla",opera:a.browser=="opera"};return getOrgChart._f};getOrgChart.prototype._ay=function(c,a){var b=a[0];switch(b.keyCode){case 37:this.move("left");break;case 38:this.move("down");break;case 39:this.move("right");break;case 40:this.move("up");break;case 107:this.zoom(1,true);break;case 109:this.zoom(-1,true);break}};getOrgChart.util={};getOrgChart.util._5=function(_A){var viewBox=_A._v.getAttribute("viewBox");viewBox="["+viewBox+"]";return eval(viewBox.replace(/\ /g,", "))};getOrgChart.util._3=function(element){var transform=element.getAttribute("transform");transform=transform.replace("matrix","").replace("(","").replace(")","");transform=getOrgChart.util._zl(transform);transform="["+transform+"]";return eval(transform.replace(/\ /g,", "))};getOrgChart.util._G=function(b,c,a){for(i=0;i<a.length;i++){if(parseInt(a[i]._zE)==b&&parseInt(a[i]._zD)==c){return a[i]}}return null};getOrgChart.util._zl=function(a){return a.replace(/^\s+|\s+$/g,"")};getOrgChart.util._e=function(a,c){var b=a.length;while(b--){if(a[b]===c){return true}}return false};getOrgChart.util._D=function(){var a=function(){return Math.floor((1+Math.random())*65536).toString(16).substring(1)};return a()+a()+"-"+a()+"-"+a()+"-"+a()+"-"+a()+a()+a()};getOrgChart.util._4=function(f){var h=[],c;var d=window.location.href.slice(window.location.href.indexOf("?")+1).split("&");for(var e=0;e<d.length;e++){c=d[e].split("=");if(c&&c.length==2&&c[0]===f){var a,b;var g=/(%[^%]{2})/;while((encodedChar=g.exec(c[1]))!=null&&encodedChar.length>1&&encodedChar[1]!=""){a=parseInt(encodedChar[1].substr(1),16);b=String.fromCharCode(a);c[1]=c[1].replace(encodedChar[1],b)}return decodeURIComponent(escape(c[1]))}}return null};getOrgChart.util._zm=function(c){if(window.ActiveXObject){var a=new ActiveXObject("Microsoft.XMLDOM");a.async="false";a.loadXML(c)}else{var b=new DOMParser();var a=b.parseFromString(c,"text/xml")}return a};getOrgChart.util._ab=function(a){if(a==null||typeof(a)=="undefined"||a==""||a==-1){return true}return false};getOrgChart.util._at=function(a){return(typeof a!=="undefined"&&a!==null)};getOrgChart.prototype.showDetailsView=function(a){var b;for(i=0;i<this._aN.length;i++){if(this._aN[i].id==a){b=this._aN[i]}}this._zh(b)};getOrgChart.prototype._zn=function(e,a){var d=7;if(this._aT._q>d){return}var c;if(e.nodeName.toLowerCase()!="a"){var f=getOrgChart.util._3(e);var g=f[4];var h=f[5];c=getOrgChart.util._G(g,h,this._aN);var b=this._X("clickEvent",{id:c.id,parentId:c.pid,data:c.data});if(!b){return}}this._zh(c)};getOrgChart.prototype._zh=function(c){var g=false;var f=(typeof(c)==="undefined");if(f===false){g=(c._aE==this._zq)}var b=function(p,j,q){var k=g?'style="display:none;"':"";var r="<select "+k+'class="get-oc-select-parent"><option value="'+p+'">--select parent--</option>';var o=null;for(var l=0;l<j.length;l++){o=j[l];if(c==o){continue}var s="";for(i=0;i<q.length;i++){var m=q[i];if(!o.data||!o.data[m]){continue}if(s){s=s+", "+o.data[m]}else{s+=o.data[m]}}if(o.id==p){r+='<option selected="selected" value="'+o.id+'">'+s+"</option>"}else{r+='<option value="'+o.id+'">'+s+"</option>"}}r+="</select>";return r};var a=function(k,j){var m='<select class="get-oc-labels"><option value="">--other--</option>';var l;for(i=0;i<j.length;i++){if(!getOrgChart.util._e(k,j[i])){l+='<option value="'+j[i]+'">'+j[i]+"</option>"}}m+=l;m+="</select>";if(!l){m=""}return m};var d="";var h=[];if(f===true){c={};c.data={};for(i=0;i<this._aH.length;i++){c.data[this._aH[i]]=""}c.id="";c.pid=""}d+=b(c.pid,this._aN,this.config.primaryColumns);d+=getOrgChart.DETAILS_VIEW_ID_INPUT.replace("[personId]",c.id);for(label in c.data){d+=getOrgChart.DETAILS_VIEW_INPUT_HTML.replace(/\[label]/g,label).replace("[value]",c.data[label]);h.push(label)}d+=a(h,this._aH);this._A._m.innerHTML=d;var e=c.getImageUrl?c.getImageUrl():"";if(e){this._A._u.innerHTML=getOrgChart.DETAILS_VIEW_ID_IMAGE.replace("[src]",e)}else{this._A._u.innerHTML=getOrgChart.DETAILS_VIEW_USER_LOGO}this._i();if(g||f){this._A._a6.className="get-delete get-disabled"}else{this._A._a6.className="get-delete"}this._A._t.style.top="-9999px";this._A._t.style.left="-9999px";this._A._h.style.top=this.theme.toolbarHeight+"px";this._A._h.style.left="0px";this._A._7.style.top="-9999px";this._A._7.style.left="-9999px";this._A._7.innerHTML="";this._A._m.style.opacity=0;this._A._u.style.opacity=0;get._s(this._A._u,{left:-100,opacity:0},{left:20,opacity:1},200,get._s._aR);get._s(this._A._zo,{top:0},{top:-this.theme.toolbarHeight},200,get._s._aV);get._s(this._A._m,{opacity:0},{opacity:1},400,get._s._aR)};getOrgChart.prototype._i=function(){var a=this._A._N();for(n=0;n<a.length;n++){this._a(a[n],"keypress",this._j);this._a(a[n],"paste",this._j)}if(this._A._U()){this._a(this._A._U(),"change",this._j)}if(this._A._Y()){this._a(this._A._Y(),"change",this._n)}};getOrgChart.prototype._j=function(b,a){this._A._zw.className=this._A._zw.className.replace("get-disabled","")};getOrgChart.prototype._n=function(l,a){var m=this._A._B();var k=this._A._Y();var h=k.value;for(var c=0;c<k.options.length;c++){if(h==k.options[c].value){k.options[c]=null}}if(!h){return}var b=this._A._m.innerHTML;var e=getOrgChart.DETAILS_VIEW_INPUT_HTML.replace(/\[label]/g,h).replace("[value]","");var d=b.indexOf('<select class="get-oc-labels">');this._A._m.innerHTML=b.substring(0,d)+e+b.substring(d,b.length);var f=this._A._N();var g=1;for(c in m){f[g].value=m[c];g++}this._i()};getOrgChart.prototype._zs=function(e,a){if(this._A._zw.className.indexOf("get-disabled")!=-1){return}var b=this._A._H().value;var d;if(this._A._U()&&this._A._U().value){d=this._A._U().value}var c=this._A._B();this.updatePerson(b,d,c);this._A._zw.className=this._A._zw.className+"get-disabled";this.showMainView()};getOrgChart.prototype._a7=function(c,a){if(this._A._a6.className.indexOf("get-disabled")!=-1){return}var b=this._A._H().value;this.removePerson(b);this.showMainView()};getOrgChart.prototype._zu=function(){this.showGridView()};getOrgChart.prototype.showGridView=function(){var a='<table cellpadding="0" cellspacing="0" border="0">';a+="<tr>";a+="<th>ID</th><th>Parent ID</th>";for(i=0;i<this._aH.length;i++){var b=this._aH[i];a+="<th>"+b+"</th>"}a+="</tr>";for(i=0;i<this._aN.length;i++){var d=(i%2==0)?"get-even":"get-odd";var c=this._aN[i].data;a+='<tr class="'+d+'">';a+="<td>"+this._aN[i].id+"</td>";a+="<td>"+this._aN[i].pid+"</td>";for(j=0;j<this._aH.length;j++){var b=this._aH[j];var e=c[b];a+="<td>";a+=e?e:" ";a+="</td>"}a+="</tr>"}a+="</table>";this._A._7.innerHTML=a;this._A._t.style.top="-9999px";this._A._t.style.left="-9999px";this._A._h.style.top="-9999px";this._A._h.style.left="-9999px";this._A._7.style.top=this.theme.toolbarHeight+"px";this._A._7.style.left="0px";get._s(this._A._7,{left:100,opacity:0},{left:0,opacity:1},200,get._s._aR);get._s(this._A._zo,{top:0},{top:-this.theme.toolbarHeight*2},200,get._s._aV)};getOrgChart.prototype._zj=function(b,a){this.showMainView()};getOrgChart.prototype.showMainView=function(){this._A._t.style.top=this.theme.toolbarHeight+"px";this._A._t.style.left="0px";this._A._h.style.top="-9999px";this._A._h.style.left="-9999px";this._A._7.style.top="-9999px";this._A._7.style.left="-9999px";this._A._7.innerHTML="";if(this.config.searchable){this._A._zd.focus()}this._A._v.style.opacity=0;get._s(this._A._v,{opacity:0},{opacity:1},200,get._s._av);if(this._A._zo.style.top!=0&&this._A._zo.style.top!=""){get._s(this._A._zo,{top:-46},{top:0},200,get._s._aV)}};getOrgChart.prototype._a3=function(b,a){this.print()};getOrgChart.prototype.print=function(){var b=this,d=this._A.element,k=this._A._zk,g=[],h=d.parentNode,j=k.style.display,a=document.body,c=a.childNodes,e;if(b._ag){return}b._ag=true;for(e=0;e<c.length;e++){var f=c[e];if(f.nodeType===1){g[e]=f.style.display;f.style.display="none"}}k.style.display="none";a.appendChild(d);window.focus();window.print();setTimeout(function(){h.appendChild(d);for(e=0;e<c.length;e++){var i=c[e];if(i.nodeType===1){i.style.display=g[e]}}k.style.display=j;b._ag=false},1000)};getOrgChart.prototype._zF=function(){this.zoom(1,true)};getOrgChart.prototype._zT=function(){this.zoom(-1,true)};getOrgChart.prototype._zx=function(c,b){this._A._b=undefined;var a=b[0].wheelDelta?b[0].wheelDelta/40:b[0].detail?-b[0].detail:0;if(a){this.zoom(a,false)}return b[0].preventDefault()&&false};getOrgChart.prototype._ap=function(f,d){this._A._b=undefined;this._aT.mouseLastX=(d[0].pageX-this._A._t.offsetLeft);this._aT.mouseLastY=(d[0].pageY-this._A._t.offsetTop);this._aT.dragged=true;if(this._aT.dragStart){var a=Math.abs(this._aT.dragStart.x-this._aT.mouseLastX);var b=Math.abs(this._aT.dragStart.y-this._aT.mouseLastY);this._aT._q=a+b;this._A._t.style.cursor="move";var g=getOrgChart.util._5(this._A);var h=g[2]/this._aB;var e=g[3]/this._aG;var c=h>e?h:e;g[0]=-((this._aT.mouseLastX-this._aT.dragStart.x)*c)+this._aT.dragStart.viewBoxLeft;g[1]=-((this._aT.mouseLastY-this._aT.dragStart.y)*c)+this._aT.dragStart.viewBoxTop;g[0]=parseInt(g[0]);g[1]=parseInt(g[1]);this._A._v.setAttribute("viewBox",g.toString())}};getOrgChart.prototype._al=function(b,a){document.body.style.mozUserSelect=document.body.style.webkitUserSelect=document.body.style.userSelect="none";this._aT.mouseLastX=(a[0].pageX-this._A._t.offsetLeft);this._aT.mouseLastY=(a[0].pageY-this._A._t.offsetTop);var c=getOrgChart.util._5(this._A);this._aT.dragStart={x:this._aT.mouseLastX,y:this._aT.mouseLastY,viewBoxLeft:c[0],viewBoxTop:c[1]};this._aT.dragged=false;this._aT._q=0};getOrgChart.prototype._aQ=function(b,a){this._aT.dragStart=null;this._A._t.style.cursor="default"};getOrgChart.prototype.zoom=function(b,a){if(this._zC){return false}this._zC=true;var f=this;var g=getOrgChart.util._5(this._A);var c=g.slice(0);var e=g[2];var d=g[3];if(b>0){g[2]=g[2]/(getOrgChart.SCALE_FACTOR*1.2);g[3]=g[3]/(getOrgChart.SCALE_FACTOR*1.2)}else{g[2]=g[2]*(getOrgChart.SCALE_FACTOR*1.2);g[3]=g[3]*(getOrgChart.SCALE_FACTOR*1.2)}g[0]=g[0]-(g[2]-e)/2;g[1]=g[1]-(g[3]-d)/2;if(a){get._s(this._A._v,{viewBox:c},{viewBox:g},500,get._s._aD,function(){f._zC=false})}else{this._A._v.setAttribute("viewBox",g.toString());this._zC=false}return false};getOrgChart.prototype._aS=function(c,b){if(c.className.indexOf("get-disabled")>-1){return false}var a=this;clearTimeout(this._ze.timer);this._ze.timer=setTimeout(function(){a._ah("next")},100)};getOrgChart.prototype._aP=function(c,b){if(c.className.indexOf("get-disabled")>-1){return false}var a=this;clearTimeout(this._ze.timer);this._ze.timer=setTimeout(function(){a._ah("prev")},100)};getOrgChart.prototype._zc=function(c,b){var a=this;clearTimeout(this._ze.timer);this._ze.timer=setTimeout(function(){a._ah()},500)};getOrgChart.prototype._zr=function(c,b){var a=this;clearTimeout(this._ze.timer);this._ze.timer=setTimeout(function(){a._ah()},100)};getOrgChart.prototype._ah=function(i){var a=this;var h=this.initialViewBoxMatrix;var o=getOrgChart.util._5(this._A);var l=o.slice(0);if(i){i=="next"?this._ze.showIndex++:this._ze.showIndex--}else{if(this._A._zd.value){if(this._ze.oldValue==this._A._zd.value){return}this._ze.oldValue=this._A._zd.value;this._ze.found=this._S(this._A._zd.value);this._ze.showIndex=0}else{this._ze.oldValue=undefined;this._ze.found=[];this._A._b=undefined;get._s(this._A._v,{viewBox:l},{viewBox:h},200,get._s._aV);this._o();return}}this._o();if(!this._ze.found||!this._ze.found.length){return}if(this._ze.found[this._ze.showIndex].node.compareTo(this._A._b)){return}var d=this._aB/2;var c=this._aG/2;var f=this.theme.size[0]/2;var e=this.theme.size[1]/2;this._A._b=this._ze.found[this._ze.showIndex].node;if(this._ze.found.length){var p=this._ze.found[this._ze.showIndex].node._zE;var q=this._ze.found[this._ze.showIndex].node._zD;o[0]=p-(d-f);o[1]=q-(c-e);o[2]=this._aB;o[3]=this._aG;var b=this._A._J(p,q);var j=b.parentNode;j.removeChild(b);j.appendChild(b);var g=getOrgChart.util._3(b);var k=g.slice(0);k[0]=getOrgChart.HIGHLIGHT_SCALE_FACTOR;k[3]=getOrgChart.HIGHLIGHT_SCALE_FACTOR;k[4]=k[4]-((this.theme.size[0]/2)*(getOrgChart.HIGHLIGHT_SCALE_FACTOR-1));k[5]=k[5]-((this.theme.size[1]/2)*(getOrgChart.HIGHLIGHT_SCALE_FACTOR-1));get._s(this._A._v,{viewBox:l},{viewBox:o},150,get._s._aV,function(){get._s(b,{transform:g},{transform:k},200,get._s._aC,function(){get._s(b,{transform:k},{transform:g},200,get._s._az)})})}};getOrgChart.prototype._o=function(){if((this._ze.showIndex<this._ze.found.length-1)&&(this._ze.found.length!=0)){this._A._aW.className=this._A._aW.className.replace(" get-disabled","")}else{if(this._A._aW.className.indexOf(" get-disabled")==-1){this._A._aW.className=this._A._aW.className+" get-disabled"}}if((this._ze.showIndex!=0)&&(this._ze.found.length!=0)){this._A._aL.className=this._A._aL.className.replace(" get-disabled","")}else{if(this._A._aL.className.indexOf(" get-disabled")==-1){this._A._aL.className=this._A._aL.className+" get-disabled"}}};getOrgChart.prototype._S=function(e){var d=[];if(e.toLowerCase){e=e.toLowerCase()}for(n=0;n<this._aN.length;n++){for(m in this._aN[n].data){if(m==this.config.imageColumn){continue}var b=-1;if(getOrgChart.util._at(this._aN[n])&&getOrgChart.util._at(this._aN[n].data[m])){var c=this._aN[n].data[m].toString().toLowerCase();b=c.indexOf(e)}if(b>-1){d.push({indexOf:b,node:this._aN[n]});break}}}function a(f,g){if(f.indexOf<g.indexOf){return -1}if(f.indexOf>g.indexOf){return 1}return 0}d.sort(a);return d};getOrgChart.prototype.removePerson=function(a){var b=this._X("removeEvent",{id:a});if(!b){return}this._a5(a);this._y=getOrgChart.util._5(this._A);this.draw();this._A._v.style.opacity=0};getOrgChart.prototype.updatePerson=function(b,c,a){var d=this._X("updateEvent",{id:b,parentId:c,data:a});if(!d){return}if(b==""){b=getOrgChart.util._D();this.createPerson(b,c,a)}else{for(t=this._aN.length-1;t>=0;t--){if(this._aN[t].id==b){if(this._aN[t].pid==null||typeof(this._aN[t].pid)=="undefined"||this._aN[t].pid==""){this._aN[t].data=a}else{if(this._aN[t].pid==c){this._aN[t].data=a}else{this._a5(b);this.createPerson(b,c,a)}}break}}}this._y=getOrgChart.util._5(this._A);this.draw()};getOrgChart.prototype.createPerson=function(d,g,a){var l=null;if(getOrgChart.util._ab(g)){l=this._zq}else{for(var e=0;e<this._aN.length;e++){if(this._aN[e].id==g){l=this._aN[e];break}}}var f=new getOrgChart.person(d,g,a,this.theme.size,this.config.imageColumn);f._aE=l;var c=this._aN.length;this._aN[c]=f;var b=l._aX.length;l._aX[b]=f;for(label in f.data){if(!getOrgChart.util._e(this._aH,label)){this._aH.push(label)}}return this};getOrgChart.prototype._a5=function(a){var c=this._aN.slice(0);this._aN=[];for(i=c.length-1;i>=0;i--){if(c[i].id==a){var b=c[i];for(j=0;j<b._aX.length;j++){b._aX[j].pid=b._aE.id}c.splice(i,1);break}}this._zz=0;this._za=0;this._ai=[];this._ak=[];this._a1=[];this._zq=new getOrgChart.person(-1,null,null,2,2);for(i=0;i<c.length;i++){this.createPerson(c[i].id,c[i].pid,c[i].data)}};getOrgChart.prototype.load=function(){var a=this.config.dataSource;if(!a){return}if(a.constructor&&(a.constructor.toString().indexOf("HTML")>-1)){this.loadFromHTMLTable(a)}else{if(typeof(a)=="string"){this.loadFromXML(a)}else{this.loadFromJSON(a)}}};getOrgChart.prototype.loadFromJSON=function(c){this._aN=[];this._zz=0;this._za=0;this._ai=[];this._ak=[];this._a1=[];this._zq=new getOrgChart.person(-1,null,null,2,2);for(var a=0;a<c.length;a++){var e=c[a];var b=e[Object.keys(e)[0]];var d=e[Object.keys(e)[1]];delete e[Object.keys(e)[0]];delete e[Object.keys(e)[0]];this.createPerson(b,d,e)}this.draw()};getOrgChart.prototype.loadFromHTMLTable=function(c){var d=c.rows[0];for(var e=1;e<c.rows.length;e++){var k=c.rows[e];var f=k.cells[0].innerHTML;var h=k.cells[1].innerHTML;var b={};for(var g=2;g<k.cells.length;g++){var a=k.cells[g];b[d.cells[g].innerHTML]=a.innerHTML}this.createPerson(f,h,b)}this.draw()};getOrgChart.prototype.loadFromXML=function(b){var a=this;get._w._C(b,null,function(c){a._am=0;a._aj(c,null,true);a.draw()},"xml")};getOrgChart.prototype.loadFromXMLDocument=function(a){var b=getOrgChart.util._zm(a);this._am=0;this._aj(b,null,true);this.draw()};getOrgChart.prototype._aj=function(l,k,d){var a=this;if(l.nodeType==1){if(l.attributes.length>0){var c={};for(var g=0;g<l.attributes.length;g++){var b=l.attributes.item(g);c[b.nodeName]=b.nodeValue}a._am++;a.createPerson(a._am,k,c);if(d){d=false}}}if(l.hasChildNodes()){if(!d){k=a._am}for(var e=0;e<l.childNodes.length;e++){var f=l.childNodes.item(e);var h=f.nodeName;if(f.nodeType==3){continue}this._aj(f,k,d)}}};if(typeof(get)=="undefined"){get={}}get._w={};get._w._zX=function(){var a;if(window.XMLHttpRequest){return new XMLHttpRequest()}else{return new ActiveXObject("Microsoft.XMLHTTP")}};get._w._zv=function(f,a,d,c,b,e){var g=get._w._zX();g.open(d,f,e);g.onreadystatechange=function(){if(!get._f().msie&&c=="xml"&&g.readyState==4){a(g.responseXML)}else{if(get._f().msie&&c=="xml"&&g.readyState==4){try{var i=new DOMParser();var j=i.parseFromString(g.responseText,"text/xml");a(j)}catch(h){var j=new ActiveXObject("Microsoft.XMLDOM");j.loadXML(g.responseText);a(j)}}else{if(g.readyState==4){a(g.responseText)}}}};if(d=="POST"){g.setRequestHeader("Content-type","application/x-www-form-urlencoded")}g.send(b)};get._w._C=function(g,b,a,c,f){var e=[];for(var d in b){e.push(encodeURIComponent(d)+"="+encodeURIComponent(b[d]))}get._w._zv(g+"?"+e.join("&"),a,"GET",c,null,f)};get._w._aM=function(g,b,a,c,f){var e=[];for(var d in b){e.push(encodeURIComponent(d)+"="+encodeURIComponent(b[d]))}get._w._zv(g,a,"POST",c,e.join("&"),f)};(function(a){a.fn.getOrgChart=function(e){var b=((arguments.length>1)||((arguments.length==1)&&(typeof(arguments[0])=="string")));var c;var d;if(b){c=Array.prototype.slice.call(arguments,1);d=arguments[0]}return this.each(function(){var h=a(this).data("getOrgChart");if(h&&b){if(h[d]){h[d].apply(h,c)}}else{var g=new getOrgChart(this,e);var f=this;g._d("removeEvent",function(j,i){a(f).trigger("removeEvent",[j,i]);if(i.returnValue===false){return false}});g._d("updateEvent",function(j,i){a(f).trigger("updateEvent",[j,i]);if(i.returnValue===false){return false}});g._d("clickEvent",function(j,i){a(f).trigger("clickEvent",[j,i]);if(i.returnValue===false){return false}});g._d("renderBoxContentEvent",function(j,i){a(f).trigger("renderBoxContentEvent",[j,i])});a(this).data("getOrgChart",g)}})}})(jQuery);