webdav.client 5.21.5975 → 5.21.5976
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Help/ClassReference/ITHit.WebDAV.Client.DocManager.html +4 -4
- package/Help/ClassReference/ITHit.WebDAV.Client.File.html +80 -80
- package/Help/ClassReference/ITHit.WebDAV.Client.Folder.html +100 -100
- package/Help/ClassReference/ITHit.WebDAV.Client.HierarchyItem.html +60 -60
- package/Help/ClassReference/ITHit.WebDAV.Client.MsOfficeEditExtensions.html +4 -4
- package/Help/ClassReference/ITHit.WebDAV.Client.Request.html +4 -4
- package/Help/ClassReference/ITHit.WebDAV.Client.Upload.UploaderSession.html +12 -12
- package/Help/ClassReference/ITHit.WebDAV.Client.Version.html +8 -8
- package/Help/ClassReference/ITHit.WebDAV.Client.WebDavSession.html +12 -12
- package/ITHitWebDAVClient.js +2 -2
- package/index.d.ts +1 -1
- package/index.js +1 -1
- package/package.json +1 -1
package/ITHitWebDAVClient.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// -----------------------------------------------------------------------
|
|
2
|
-
// IT Hit WebDAV Ajax Library v5.21.
|
|
2
|
+
// IT Hit WebDAV Ajax Library v5.21.5976.0
|
|
3
3
|
// Copyright © 2020 IT Hit LTD. All rights reserved.
|
|
4
4
|
// License: https://www.webdavsystem.com/ajax/
|
|
5
5
|
// -----------------------------------------------------------------------
|
|
@@ -84,4 +84,4 @@ ITHit.Temp.WebDAV_Phrases={
|
|
|
84
84
|
}
|
|
85
85
|
};
|
|
86
86
|
|
|
87
|
-
(function(){ITHit.DefineClass("ITHit.Environment",null,{__static:{OS:ITHit.DetectOS.OS}});})();ITHit.oNS=ITHit.Declare("ITHit.Exceptions");ITHit.oNS.LoggerException=function(_101,_102){ITHit.Exceptions.LoggerException.baseConstructor.call(this,_101,_102);};ITHit.Extend(ITHit.oNS.LoggerException,ITHit.Exception);ITHit.oNS.LoggerException.prototype.Name="LoggerException";ITHit.DefineClass("ITHit.LogLevel",null,{},{All:32,Debug:16,Info:8,Warn:4,Error:2,Fatal:1,Off:0});(function(){var _103={};var _104={};var _105={};for(var _106 in ITHit.LogLevel){_103[ITHit.LogLevel[_106]]=[];_105[ITHit.LogLevel[_106]]=[];}var _107=function(_108,_109,iTo,_10b){for(var _10c in ITHit.LogLevel){if(ITHit.LogLevel[_10c]>iTo){continue;}if(!ITHit.LogLevel[_10c]||(_109>=ITHit.LogLevel[_10c])){continue;}if(_108){_105[ITHit.LogLevel[_10c]].push(_10b);}else{for(var i=0;i<_105[ITHit.LogLevel[_10c]].length;i++){if(_105[ITHit.LogLevel[_10c]][i]==_10b){_105[ITHit.LogLevel[_10c]].splice(i,1);}}}}};_107.add=function(iTo,_10f){_107.increase(ITHit.LogLevel.Off,iTo,_10f);};_107.del=function(iTo,_111){_107.decrease(ITHit.LogLevel.Off,iTo,_111);};_107.increase=function(_112,iTo,_114){_107(true,_112,iTo,_114);};_107.decrease=function(_115,iTo,_117){_107(false,_115,iTo,_117);};ITHit.DefineClass("ITHit.Logger",null,{},{Level:ITHit.Config.LogLevel||ITHit.LogLevel.Debug,AddListener:function(_118,_119){if(_119==ITHit.LogLevel.Off){this.RemoveListener();}var _11a=0;var _11b=0;outer:for(var _11c in _103){for(var i=0;i<_103[_11c].length;i++){if(_103[_11c][i]==_118){_11a=_11c;_11b=i;break outer;}}}if(!_11a){_103[_119].push(_118);_107.add(_119,_118);}else{if(_119!=_11a){_103[_11a].splice(_11b,1);_103[_119].push(_118);if(_119>_11a){_107.increase(_11a,_119,_118);}else{_107.decrease(_119,_11a,_118);}}}},RemoveListener:function(_11e){outer:for(var _11f in _103){for(var i=0;i<_103[_11f].length;i++){if(_103[_11f][i]==_11e){_103[_11f].splice(i,1);_107.del(_11f,_11e);break outer;}}}return true;},SetLogLevel:function(_121,_122){return this.AddListener(_121,_122,true);},GetLogLevel:function(_123){for(var _124 in _103){for(var i=0;i<_103[_124].length;i++){if(_103[_124][i]==_123){return _124;}}}return false;},GetListenersForLogLevel:function(_126){return _105[_126];},GetCount:function(_127){return _105[_127].length;},WriteResponse:function(_128){if(Logger.GetCount(ITHit.LogLevel.Info)){var sStr="";if(_128 instanceof HttpWebResponse){sStr+="\n"+_128.StatusCode+" "+_128.StatusDescription+"\n";}sStr+=_128.ResponseUri+"\n";for(var _12a in _128.Headers){sStr+=_12a+": "+_128.Headers[_12a]+"\n";}sStr+=_128.GetResponse();this.WriteMessage(sStr);}},WriteMessage:function(_12b,_12c){_12c=("undefined"==typeof _12c)?ITHit.LogLevel.Info:parseInt(_12c);if(ITHit.Logger.GetCount(_12c)){var _12d=this.GetListenersForLogLevel(_12c);var _12b=String(_12b).replace(/([^\n])$/,"$1\n");for(var i=0;i<_12d.length;i++){try{_12d[i](_12b,ITHit.LogLevel.Info);}catch(e){if(!_12d[i] instanceof Function){throw new ITHit.Exceptions.LoggerException("Log listener expected function, passed: \""+_12d[i]+"\"",e);}else{throw new ITHit.Exceptions.LoggerException("Message could'not be logged.",e);}}}}},StartLogging:function(){},FinishLogging:function(){},StartRequest:function(){},FinishRequest:function(){}});})();ITHit.oNS=ITHit.Declare("ITHit.Exceptions");ITHit.oNS.PhraseException=function(_12f,_130){ITHit.Exceptions.PhraseException.baseConstructor.call(this,_12f,_130);};ITHit.Extend(ITHit.oNS.PhraseException,ITHit.Exception);ITHit.oNS.PhraseException.prototype.Name="PhraseException";ITHit.Phrases=(function(){var _131={};var _132=function(_133){this._arguments=_133;};_132.prototype.Replace=function(_134){var _135=_134.substr(1,_134.length-2);return ("undefined"!=typeof this._arguments[_135])?this._arguments[_135]:_134;};var _136=function(_137){this._phrase=_137;};_136.prototype.toString=function(){return this._phrase;};_136.prototype.Paste=function(){var _138=this._phrase;if(/\{\d+?\}/.test(_138)){var _139=new _132(arguments);_138=_138.replace(/\{(\d+?)\}/g,function(args){return _139.Replace(args);});}return _138;};var _13b=function(){};_13b.prototype.LoadJSON=function(_13c,_13d){var _13e=ITHit.Utils;if(_13d&&!_13e.IsString(_13d)){throw new ITHit.Exceptions.PhraseException("Namespace expected to be a string.");}var _13f=this;if(_13d){_13f=ITHit.Declare(_13d);}try{var _140=_13c;if(_13e.IsString(_140)){_140=eval("("+_13c+")");}this._AddPhrases(_140,_13f);}catch(e){console.dir(e);throw new ITHit.Exceptions.PhraseException("Wrong text structure.",e);}};_13b.prototype.LoadLocalizedJSON=function(_141,_142,_143){var _144=ITHit.Utils,_145=_144.IsUndefined,_146=_144.IsObject;if(!_141||!_144.IsObjectStrict(_141)){throw new ITHit.Exceptions.PhraseException("Default phrases expected to be an JSON object.");}if(_142&&!_144.IsObjectStrict(_142)){throw new ITHit.Exceptions.PhraseException("Default phrases expected to be an JSON object");}var _147;if(_142){_147={};this._MergePhrases(_147,_142);this._MergePhrases(_147,_141);}else{_147=_141;}this.LoadJSON(_147,_143);};_13b.prototype._MergePhrases=function(dest,_149){var _14a=ITHit.Utils,_14b=_14a.IsUndefined,_14c=_14a.IsObject;for(var prop in _149){if(!_149.hasOwnProperty(prop)){continue;}if(_14b(dest[prop])){dest[prop]=_149[prop];}else{if(_14c(dest[prop])){this._MergePhrases(dest[prop],_149[prop]);}}}};_13b.prototype._AddPhrases=function(_14e,_14f){_14f=_14f||this;for(var _150 in _14e){if(("object"!=typeof _14e[_150])||!(_14e[_150] instanceof Object)){switch(_150){case "_AddPhrases":case "LoadJSON":case "LoadLocalizedJSON":case "_Merge":case "prototype":case "toString":throw new ITHit.Exceptions.PhraseException("\""+_150+"\" is reserved word.");break;}_14f[_150]=new _136(_14e[_150]);}else{this._AddPhrases(_14e[_150],_14f[_150]?_14f[_150]:(_14f[_150]={}));}}};return new _13b();})();ITHit.oNS=ITHit.Declare("ITHit.Exceptions");ITHit.oNS.XPathException=function(_151,_152){ITHit.Exceptions.XPathException.baseConstructor.call(this,_151,_152);};ITHit.Extend(ITHit.oNS.XPathException,ITHit.Exception);ITHit.oNS.XPathException.prototype.Name="XPathException";ITHit.XPath={_component:null,_version:null};ITHit.XPath.evaluate=function(_153,_154,_155,_156,_157){if(("string"!=typeof _153)&&!(_153 instanceof String)){throw new ITHit.Exceptions.XPathException("Expression was expected to be a string in ITHit.XPath.eveluate.");}if(!(_154 instanceof ITHit.XMLDoc)){throw new ITHit.Exceptions.XPathException("Element was expected to be an ITHit.XMLDoc object in ITHit.XPath.evaluate.");}if(_155&&!(_155 instanceof ITHit.XPath.resolver)){throw new ITHit.Exceptions.XPathException("Namespace resolver was expected to be an ITHit.XPath.resolver object in ITHit.XPath.evaluate.");}if(_156&&!(_156 instanceof ITHit.XPath.result)){throw new ITHit.Exceptions.XPathException("Result expected to be an ITHit.XPath.result object in ITHit.XPath.evaluate.");}_155=_155||null;_156=_156||null;if(document.implementation.hasFeature("XPath","3.0")&&document.evaluate){var _158=_154._get();var _159=_158.ownerDocument||_158;if(_156){_159.evaluate(_153,_158,_155,ITHit.XPath.result.UNORDERED_NODE_SNAPSHOT_TYPE,_156._res);return;}var oRes=new ITHit.XPath.result(_159.evaluate(_153,_158,_155,ITHit.XPath.result.UNORDERED_NODE_SNAPSHOT_TYPE,null));if(!_157){return oRes;}else{return oRes.iterateNext();}}else{if(undefined!==window.ActiveXObject){var _158=_154._get();var _15b=false;try{_158.getProperty("SelectionNamespaces");_15b=true;}catch(e){}var _15c=false;if(3==ITHit.XMLDoc._version){var sXml=_158.xml.replace(/^\s+|\s+$/g,"");var _15e="urn:uuid:c2f41010-65b3-11d1-a29f-00aa00c14882/";var _15f="cutted";if(-1!=sXml.indexOf(_15e)||true){var _160=sXml.replace(_15e,_15f);var _161=new ITHit.XMLDoc();_161.load(_160);if(_155){var oNs=_155.getAll();for(var _163 in oNs){if(_15e==oNs[_163]){oNs.add(_163,_15f);break;}}}_158=_161._get();_15b=true;_15c=true;}}if(_15b&&_155&&_155.length()){var _164=_155.getAll();var aNs=[];for(var _163 in _164){aNs.push("xmlns:"+_163+"='"+_164[_163]+"'");}_158.setProperty("SelectionNamespaces",aNs.join(" "));}if(_15c){_158=_158.documentElement;}try{if(!_157){if(!_156){return new ITHit.XPath.result(_158.selectNodes(_153));}else{_156._res=_158.selectNodes(_153);return;}}else{var mOut=_158.selectSingleNode(_153);if(mOut){return new ITHit.XMLDoc(mOut);}else{return mOut;}}}catch(e){if(!_15b&&(-2147467259==e.number)&&_155&&_155.length()){var sEl=new ITHit.XMLDoc(_158).toString();var oEl=new ITHit.XMLDoc();oEl.load(sEl);_158=oEl._get();var _164=_155.getAll();var aNs=[];for(var _163 in _164){aNs.push("xmlns:"+_163+"='"+_164[_163]+"'");}_158.setProperty("SelectionNamespaces",aNs.join(" "));_158=_158.documentElement;if(!_157){if(!_156){return new ITHit.XPath.result(_158.selectNodes(_153));}else{_156._res=_158.selectNodes(_153);return;}}else{var mOut=_158.selectSingleNode(_153);if(mOut){return new ITHit.XMLDoc(mOut);}else{return mOut;}}}else{throw new ITHit.Exceptions.XPathException("Evaluation failed for searching \""+_153+"\".",e);}}}}throw new ITHit.Exceptions.XPathException("XPath support is not implemented for your browser.");};ITHit.XPath.selectSingleNode=function(_169,_16a,_16b){return ITHit.XPath.evaluate(_169,_16a,_16b,false,true);};ITHit.XPath.resolver=function(){this._ns={};this._length=0;};ITHit.XPath.resolver.prototype.add=function(_16c,sNs){this._ns[_16c]=sNs;this._length++;};ITHit.XPath.resolver.prototype.remove=function(_16e){delete this._ns[_16e];this._length--;};ITHit.XPath.resolver.prototype.get=function(_16f){return this._ns[_16f]||null;};ITHit.XPath.resolver.prototype.lookupNamespaceURI=ITHit.XPath.resolver.prototype.get;ITHit.XPath.resolver.prototype.getAll=function(){var oOut={};for(var _171 in this._ns){oOut[_171]=this._ns[_171];}return oOut;};ITHit.XPath.resolver.prototype.length=function(){return this._length;};ITHit.XPath.result=function(_172){this._res=_172;this._i=0;this.length=_172.length?_172.length:_172.snapshotLength;};ITHit.XPath.result.ANY_TYPE=0;ITHit.XPath.result.NUMBER_TYPE=1;ITHit.XPath.result.STRING_TYPE=2;ITHit.XPath.result.BOOLEAN_TYPE=3;ITHit.XPath.result.UNORDERED_NODE_ITERATOR_TYPE=4;ITHit.XPath.result.ORDERED_NODE_ITERATOR_TYPE=5;ITHit.XPath.result.UNORDERED_NODE_SNAPSHOT_TYPE=6;ITHit.XPath.result.ORDERED_NODE_SNAPSHOT_TYPE=7;ITHit.XPath.result.ANY_UNORDERED_NODE_TYPE=8;ITHit.XPath.result.FIRST_ORDERED_NODE_TYPE=9;ITHit.XPath.result.prototype.iterateNext=function(_173){var mOut;if(!_173){if(!this._res.snapshotItem){try{mOut=this._res[this._i++];}catch(e){return null;}}else{mOut=this._res.snapshotItem(this._i++);}}else{mOut=this._res[_173];}if(mOut){return new ITHit.XMLDoc(mOut);}else{return mOut;}};ITHit.XPath.result.prototype.snapshotItem=ITHit.XPath.result.prototype.iterateNext;ITHit.XPath.result.prototype.type=function(){return this._res.resultType;};ITHit.XPath.result.prototype._get=function(){return this._res;};ITHit.oNS=ITHit.Declare("ITHit.Exceptions");ITHit.oNS.XMLDocException=function(_175,_176){ITHit.Exceptions.XMLDocException.baseConstructor.call(this,_175,_176);};ITHit.Extend(ITHit.oNS.XMLDocException,ITHit.Exception);ITHit.oNS.XMLDocException.prototype.Name="XMLDocException";ITHit.XMLDoc=(function(){var _177;var _178=1;var _179=2;var _17a=3;var _17b=4;var _17c=5;var _17d=6;var _17e=7;var _17f=8;var _180=9;var _181=10;var _182=11;var _183=12;var _184=function(_185){this._xml=null;this._encoding=null;if(null!==_185){if(!_185||("object"!=typeof _185)){if(undefined!==window.ActiveXObject){if(_177){this._xml=new window.ActiveXObject(_177);}else{var _186=["Msxml2.DOMDocument.6.0","Msxml2.DOMDocument.4.0","Msxml2.DOMDocument.3.0"];var _187=[6,4,3];for(var i=0;i<_186.length;i++){try{this._xml=new window.ActiveXObject(_186[i]);_184._version=_187[i];_177=_186[i];break;}catch(e){if(3==_187[i]){throw new ITHit.Exception("XML component is not supported.");}}}}}else{if(document.implementation&&document.implementation.createDocument){this._xml=document.implementation.createDocument("","",null);}}if(undefined===this._xml){throw new ITHit.Exceptions.XMLDocException("XML support for current browser is not implemented.");}this._xml.async=false;}else{this._xml=_185;}}else{this._xml=null;return null;}};_184._version=0;_184.prototype.contentEncoding=function(_189){if(undefined!==_189){this._encoding=_189;}return this._encoding;};_184.prototype.load=function(_18a){if(!ITHit.Utils.IsString(_18a)){throw new ITHit.Exceptions.XMLDocException("String was expected for xml parsing.");}if(!_18a){return new _184();}var oDoc;if(undefined!==window.ActiveXObject){try{if(3==_184._version){_18a=_18a.replace(/(?:urn\:uuid\:c2f41010\-65b3\-11d1\-a29f\-00aa00c14882\/)/g,"cutted");}if(_184._version){_18a=_18a.replace(/<\?.*\?>/,"");this._xml.loadXML(_18a);}else{var _18c=new _184();if(3==_184._version){_18a=_18a.replace(/(?:urn\:uuid\:c2f41010\-65b3\-11d1\-a29f\-00aa00c14882\/)/g,"cutted");}_18c.load(_18a);this._xml=_18c._get();}}catch(e){var _18d=e;}}else{if(document.implementation.createDocument){try{var _18e=new DOMParser();oDoc=_18e.parseFromString(_18a,"text/xml");this._xml=oDoc;}catch(e){var _18d=e;}}else{throw new ITHit.Exceptions.XMLDocException("Cannot create XML parser object. Support for current browser is not implemented.");}}if(undefined!==_18d){throw new ITHit.Exceptions.XMLDocException("ITHit.XMLDoc.load() method failed.\nPossible reason: syntax error in passed XML string.",_18d);}};_184.prototype.appendChild=function(_18f){if(!_18f instanceof ITHit.XMLDoc){throw ITHit.Exceptions.XMLDocException("Instance of XMLDoc was expected in appendChild method.");}this._xml.appendChild(_18f._get());};_184.prototype.createElement=function(_190){return new _184(this._xml.createElement(_190));};_184.prototype.createElementNS=function(sNS,_192){if(this._xml.createElementNS){var _193=this._xml.createElementNS(sNS,_192);return new ITHit.XMLDoc(_193);}else{try{return new _184(this._xml.createNode(_178,_192,sNS));}catch(e){throw new ITHit.Exceptions.XMLDocException("Node is not created.",e);}}throw new ITHit.Exceptions.XMLDocException("createElementNS for current browser is not implemented.");};_184.prototype.createTextNode=function(_194){return new _184(this._xml.createTextNode(_194));};_184.prototype.getElementById=function(sId){return new _184(this._xml.getElementById(sId));};_184.prototype.getElementsByTagName=function(_196){return new _184(this._xml.getElementsByTagName(_196));};_184.prototype.childNodes=function(){var _197=this._xml.childNodes;var _198=[];for(var i=0;i<_197.length;i++){_198.push(new ITHit.XMLDoc(_197[i]));}return _198;};_184.prototype.getElementsByTagNameNS=function(_19a,_19b){if(this._xml.getElementsByTagNameNS){var _19c=this._xml.getElementsByTagNameNS(_19a,_19b);}else{var _19d=this.toString();var _19e=new ITHit.XMLDoc();_19e.load(_19d);var _19f=new ITHit.XPath.resolver();_19f.add("a",_19a);var oRes=ITHit.XPath.evaluate(("//a:"+_19b),_19e,_19f);var _19c=oRes._get();}var aRet=[];for(var i=0;i<_19c.length;i++){var _1a3=new ITHit.XMLDoc(_19c[i]);aRet.push(_1a3);}return aRet;};_184.prototype.setAttribute=function(_1a4,_1a5){this._xml.setAttribute(_1a4,_1a5);};_184.prototype.hasAttribute=function(_1a6){return this._xml.hasAttribute(_1a6);};_184.prototype.getAttribute=function(_1a7){return this._xml.getAttribute(_1a7);};_184.prototype.removeAttribute=function(_1a8){this._xml.removeAttribute(_1a8);};_184.prototype.hasAttributeNS=function(_1a9){return this._xml.hasAttribute(_1a9);};_184.prototype.getAttributeNS=function(_1aa){return this._xml.getAttribute(_1aa);};_184.prototype.removeAttributeNS=function(_1ab){this._xml.removeAttribute(_1ab);};_184.prototype.removeChild=function(_1ac){if(!_1ac instanceof ITHit.XMLDoc){throw ITHit.Exceptions.XMLDocException("Instance of XMLDoc was expected in ITHit.XMLDoc.removeChild() method.");}this._xml.removeChild(_1ac);return new ITHit.XMLDoc(_1ac);};_184.prototype.removeNode=function(_1ad){if(!_1ad instanceof ITHit.XMLDoc){throw ITHit.Exceptions.XMLDocException("Instance of XMLDoc was expected in ITHit.XMLDoc.removeNode() method.");}_1ad=_1ad._get();if(_1ad.removeNode){return new _184(_1ad.removeNode(true));}else{return new _184(_1ad.parentNode.removeChild(_1ad));}};_184.prototype.cloneNode=function(_1ae){if(undefined===_1ae){_1ae=true;}return new ITHit.XMLDoc(this._xml.cloneNode(_1ae));};_184.prototype.getProperty=function(_1af){return this._xml[_1af];};_184.prototype.setProperty=function(_1b0,_1b1){this._xml[_1b0]=_1b1;};_184.prototype.nodeName=function(){return this._xml.nodeName;};_184.prototype.nextSibling=function(){return new ITHit.XMLDoc(this._xml.nextSibling);};_184.prototype.namespaceURI=function(){return this._xml.namespaceURI;};_184.prototype.hasChildNodes=function(){return (this._xml&&this._xml.hasChildNodes());};_184.prototype.firstChild=function(){return new _184(this._xml.firstChild);};_184.prototype.localName=function(){return this._xml.localName||this._xml.baseName;};_184.prototype.nodeValue=function(){var _1b2="";if(this._xml){_1b2=this._xml.nodeValue;}if("object"!=typeof _1b2){return _1b2;}else{return new ITHit.XMLDoc(_1b2);}};_184.prototype.nodeType=function(){return this._xml.nodeType;};_184.prototype._get=function(){return this._xml;};_184.prototype.toString=function(_1b3){return _184.toString(this._xml,this._encoding,_1b3);};_184.toString=function(_1b4,_1b5,_1b6){if(!_1b4){throw new ITHit.Exceptions.XMLDocException("ITHit.XMLDoc: XML object expected.");}var _1b7="";var _1b8=true;if(undefined!==_1b4.xml){_1b7=_1b4.xml.replace(/^\s+|\s+$/g,"");_1b8=false;}else{if(document.implementation.createDocument&&(undefined!==XMLSerializer)){_1b7=new XMLSerializer().serializeToString(_1b4);_1b8=false;}}if(_1b7){if(_1b5){_1b5=" encoding=\""+this._encoding+"\"";}else{_1b5="";}var sOut=((!_1b6)?"<?xml version=\"1.0\""+_1b5+"?>":"")+_1b7.replace(/^<\?xml[^?]+\?>/,"");return sOut;}if(_1b8){throw new ITHit.Exceptions.XMLDocException("XML parser object is not created.");}return _1b7;};return _184;})();ITHit.XMLDoc.nodeTypes={NODE_ELEMENT:1,NODE_ATTRIBUTE:2,NODE_TEXT:3,NODE_CDATA_SECTION:4,NODE_ENTITY_REFERENCE:5,NODE_ENTITY:6,NODE_PROCESSING_INSTRUCTION:7,NODE_COMMENT:8,NODE_DOCUMENT:9,NODE_DOCUMENT_TYPE:10,NODE_DOCUMENT_FRAGMENT:11,NODE_NOTATION:12};ITHit.oNS=ITHit.Declare("ITHit.Exceptions");ITHit.oNS.ArgumentNullException=function(_1ba){var _1bb="Variable \""+_1ba+"\" nas null value.";ITHit.Exceptions.ArgumentNullException.baseConstructor.call(this,_1bb);};ITHit.Extend(ITHit.oNS.ArgumentNullException,ITHit.Exception);ITHit.oNS.ArgumentNullException.prototype.Name="ArgumentNullException";ITHit.DefineClass("ITHit.WebDAV.Client.WebDavUtil",null,{__static:{VerifyArgumentNotNull:function(_1bc,_1bd){if(_1bc===null){throw new ITHit.Exceptions.ArgumentNullException(_1bd);}},VerifyArgumentNotNullOrEmpty:function(_1be,_1bf){if(_1be===null||_1be===""){throw new ITHit.Exceptions.ArgumentNullException(_1bf);}},NormalizeEmptyToNull:function(_1c0){if(_1c0===null||_1c0===""){return null;}return _1c0;},NormalizeEmptyOrNoneToNull:function(_1c1){if(_1c1===null||_1c1===""||_1c1=="None"){return null;}return _1c1;},HashCode:function(str){var hash=0;for(var i=0;i<str.length;i++){var _1c5=str.charCodeAt(i);hash=((hash<<5)-hash)+_1c5;hash=hash&hash;}return hash;}}});ITHit.DefineClass("ITHit.WebDAV.Client.PropertyName",null,{Name:null,NamespaceUri:null,constructor:function(_1c6,_1c7){ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNullOrEmpty(_1c6,"sName");this.Name=_1c6;this.NamespaceUri=_1c7;},Equals:function(oObj,_1c9){_1c9=_1c9||false;if(this==oObj){return true;}if(!oObj instanceof ITHit.WebDAV.Client.PropertyName){return false;}return _1c9?this.Name.toLowerCase()===oObj.Name.toLowerCase()&&this.NamespaceUri.toLowerCase()===oObj.NamespaceUri.toLowerCase():this.Name===oObj.Name&&this.NamespaceUri===oObj.NamespaceUri;},IsStandardProperty:function(){if(!ITHit.WebDAV.Client.PropertyName.StandardNames){ITHit.WebDAV.Client.PropertyName.StandardNames=[ITHit.WebDAV.Client.DavConstants.ResourceType,ITHit.WebDAV.Client.DavConstants.DisplayName,ITHit.WebDAV.Client.DavConstants.CreationDate,ITHit.WebDAV.Client.DavConstants.GetLastModified,ITHit.WebDAV.Client.DavConstants.GetContentLength,ITHit.WebDAV.Client.DavConstants.GetContentType,ITHit.WebDAV.Client.DavConstants.GetETag,ITHit.WebDAV.Client.DavConstants.IsCollection,ITHit.WebDAV.Client.DavConstants.IsFolder,ITHit.WebDAV.Client.DavConstants.IsHidden,ITHit.WebDAV.Client.DavConstants.SupportedLock,ITHit.WebDAV.Client.DavConstants.LockDiscovery,ITHit.WebDAV.Client.DavConstants.GetContentLanguage,ITHit.WebDAV.Client.DavConstants.Source,ITHit.WebDAV.Client.DavConstants.QuotaAvailableBytes,ITHit.WebDAV.Client.DavConstants.QuotaUsedBytes,new ITHit.WebDAV.Client.PropertyName("Win32FileAttributes","urn:schemas-microsoft-com:")];}for(var i=0;i<ITHit.WebDAV.Client.PropertyName.StandardNames.length;i++){if(this.Equals(ITHit.WebDAV.Client.PropertyName.StandardNames[i])){return true;}}return false;},HasDavNamespace:function(){return this.NamespaceUri===ITHit.WebDAV.Client.DavConstants.NamespaceUri;},toString:function(){return this.NamespaceUri+":"+this.Name;}});(function(){var _1cb="DAV:";ITHit.DefineClass("ITHit.WebDAV.Client.DavConstants",null,{__static:{NamespaceUri:_1cb,Comment:new ITHit.WebDAV.Client.PropertyName("comment",_1cb),CreationDate:new ITHit.WebDAV.Client.PropertyName("creationdate",_1cb),CreatorDisplayName:new ITHit.WebDAV.Client.PropertyName("creator-displayname",_1cb),DisplayName:new ITHit.WebDAV.Client.PropertyName("displayname",_1cb),GetContentLength:new ITHit.WebDAV.Client.PropertyName("getcontentlength",_1cb),GetContentType:new ITHit.WebDAV.Client.PropertyName("getcontenttype",_1cb),GetETag:new ITHit.WebDAV.Client.PropertyName("getetag",_1cb),GetLastModified:new ITHit.WebDAV.Client.PropertyName("getlastmodified",_1cb),IsCollection:new ITHit.WebDAV.Client.PropertyName("iscollection",_1cb),IsFolder:new ITHit.WebDAV.Client.PropertyName("isFolder",_1cb),IsHidden:new ITHit.WebDAV.Client.PropertyName("ishidden",_1cb),ResourceType:new ITHit.WebDAV.Client.PropertyName("resourcetype",_1cb),SupportedLock:new ITHit.WebDAV.Client.PropertyName("supportedlock",_1cb),LockDiscovery:new ITHit.WebDAV.Client.PropertyName("lockdiscovery",_1cb),GetContentLanguage:new ITHit.WebDAV.Client.PropertyName("getcontentlanguage",_1cb),Source:new ITHit.WebDAV.Client.PropertyName("source",_1cb),QuotaAvailableBytes:new ITHit.WebDAV.Client.PropertyName("quota-available-bytes",_1cb),QuotaUsedBytes:new ITHit.WebDAV.Client.PropertyName("quota-used-bytes",_1cb),VersionName:new ITHit.WebDAV.Client.PropertyName("version-name",_1cb),VersionHistory:new ITHit.WebDAV.Client.PropertyName("version-history",_1cb),CheckedIn:new ITHit.WebDAV.Client.PropertyName("checked-in",_1cb),CheckedOut:new ITHit.WebDAV.Client.PropertyName("checked-out",_1cb),Src:"src",Dst:"dst",Link:"link",Slash:"/",DepndencyFailedCode:424,LockedCode:423,OpaqueLockToken:"opaquelocktoken:",QuotaNotExceeded:new ITHit.WebDAV.Client.PropertyName("quota-not-exceeded",_1cb),SufficientDiskSpace:new ITHit.WebDAV.Client.PropertyName("sufficient-disk-space",_1cb),ProtocolName:"dav10"}});})();ITHit.oNS=ITHit.Declare("ITHit.Exceptions");ITHit.oNS.ArgumentException=function(_1cc,_1cd){_1cc+=" Variable name: \""+_1cd+"\"";ITHit.Exceptions.ArgumentException.baseConstructor.call(this,_1cc);};ITHit.Extend(ITHit.oNS.ArgumentException,ITHit.Exception);ITHit.oNS.ArgumentException.prototype.Name="ArgumentException";(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.Depth",null,{__static:{Zero:null,One:null,Infinity:null,Parse:function(_1cf){switch(_1cf.toLowerCase()){case "0":return ITHit.WebDAV.Client.Depth.Zero;break;case "1":return ITHit.WebDAV.Client.Depth.One;break;case "infinity":return ITHit.WebDAV.Client.Depth.Infinity;break;default:throw new ITHit.Exceptions.ArgumentException(ITHit.Phrases.Exceptions.InvalidDepthValue,"sValue");}}},constructor:function(_1d0){this.Value=_1d0;}});self.Zero=new self(0);self.One=new self(1);self.Infinity=new self("Infinity");})();ITHit.DefineClass("ITHit.WebDAV.Client.Methods.HttpMethod",null,{__static:{Go:function(_1d1,_1d2,_1d3){var _1d4=this._CreateRequest.apply(this,arguments);var _1d5=_1d4.GetResponse();return this._ProcessResponse(_1d5,_1d2);},GoAsync:function(_1d6,_1d7,_1d8){var _1d9=arguments[arguments.length-1];var _1da=this._CreateRequest.apply(this,arguments);var that=this;_1da.GetResponse(function(_1dc){if(_1dc.IsSuccess){_1dc.Result=that._ProcessResponse(_1dc.Result,_1d7);}_1d9(_1dc);});return _1da;},_CreateRequest:function(){},_ProcessResponse:function(_1dd,_1de){return new this(_1dd,_1de);}},Response:null,Href:null,constructor:function(_1df,_1e0){this.Response=_1df;this.Href=_1e0;this._Init();},_Init:function(){}});(function(){ITHit.DefineClass("ITHit.WebDAV.Client.HttpStatus",null,{__static:{None:null,Unauthorized:null,OK:null,Created:null,NoContent:null,PartialContent:null,MultiStatus:null,Redirect:null,BadRequest:null,NotFound:null,MethodNotAllowed:null,PreconditionFailed:null,Locked:null,DependencyFailed:null,Forbidden:null,Conflict:null,NotImplemented:null,BadGateway:null,InsufficientStorage:null,Parse:function(_1e1){var _1e2=_1e1.split(" ");var _1e3=parseInt(_1e2[1]);_1e2.splice(0,2);return new ITHit.WebDAV.Client.HttpStatus(_1e3,_1e2.join(" "));}},Code:null,Description:null,constructor:function(_1e4,_1e5){this.Code=_1e4;this.Description=_1e5;},Equals:function(_1e6){if(!_1e6||!(_1e6 instanceof ITHit.WebDAV.Client.HttpStatus)){return false;}return this.Code===_1e6.Code;},IsCreateOk:function(){return this.Equals(ITHit.WebDAV.Client.HttpStatus.Created);},IsDeleteOk:function(){return this.Equals(ITHit.WebDAV.Client.HttpStatus.OK)||this.Equals(ITHit.WebDAV.Client.HttpStatus.NoContent);},IsOk:function(){return this.Equals(ITHit.WebDAV.Client.HttpStatus.OK);},IsCopyMoveOk:function(){return this.Equals(ITHit.WebDAV.Client.HttpStatus.NoContent)||this.Equals(ITHit.WebDAV.Client.HttpStatus.Created);},IsGetOk:function(){return this.Equals(ITHit.WebDAV.Client.HttpStatus.OK)||this.Equals(ITHit.WebDAV.Client.HttpStatus.PartialContent);},IsPutOk:function(){return this.Equals(ITHit.WebDAV.Client.HttpStatus.OK)||this.Equals(ITHit.WebDAV.Client.HttpStatus.Created)||this.Equals(ITHit.WebDAV.Client.HttpStatus.NoContent);},IsUnlockOk:function(){return this.Equals(ITHit.WebDAV.Client.HttpStatus.OK)||this.Equals(ITHit.WebDAV.Client.HttpStatus.NoContent);},IsHeadOk:function(){return this.Equals(ITHit.WebDAV.Client.HttpStatus.OK)||this.Equals(ITHit.WebDAV.Client.HttpStatus.NotFound);},IsUpdateOk:function(){return this.Equals(ITHit.WebDAV.Client.HttpStatus.OK)||this.Equals(ITHit.WebDAV.Client.HttpStatus.None);},IsSuccess:function(){return (parseInt(this.Code/100)==2);}});})();ITHit.WebDAV.Client.HttpStatus.None=new ITHit.WebDAV.Client.HttpStatus(0,"");ITHit.WebDAV.Client.HttpStatus.Unauthorized=new ITHit.WebDAV.Client.HttpStatus(401,"Unauthorized");ITHit.WebDAV.Client.HttpStatus.OK=new ITHit.WebDAV.Client.HttpStatus(200,"OK");ITHit.WebDAV.Client.HttpStatus.Created=new ITHit.WebDAV.Client.HttpStatus(201,"Created");ITHit.WebDAV.Client.HttpStatus.NoContent=new ITHit.WebDAV.Client.HttpStatus(204,"No Content");ITHit.WebDAV.Client.HttpStatus.PartialContent=new ITHit.WebDAV.Client.HttpStatus(206,"Partial Content");ITHit.WebDAV.Client.HttpStatus.MultiStatus=new ITHit.WebDAV.Client.HttpStatus(207,"Multi-Status");ITHit.WebDAV.Client.HttpStatus.Redirect=new ITHit.WebDAV.Client.HttpStatus(278,"Redirect");ITHit.WebDAV.Client.HttpStatus.BadRequest=new ITHit.WebDAV.Client.HttpStatus(400,"Bad Request");ITHit.WebDAV.Client.HttpStatus.NotFound=new ITHit.WebDAV.Client.HttpStatus(404,"Not Found");ITHit.WebDAV.Client.HttpStatus.MethodNotAllowed=new ITHit.WebDAV.Client.HttpStatus(405,"Method Not Allowed");ITHit.WebDAV.Client.HttpStatus.PreconditionFailed=new ITHit.WebDAV.Client.HttpStatus(412,"Precondition Failed");ITHit.WebDAV.Client.HttpStatus.Locked=new ITHit.WebDAV.Client.HttpStatus(423,"Locked");ITHit.WebDAV.Client.HttpStatus.DependencyFailed=new ITHit.WebDAV.Client.HttpStatus(424,"Dependency Failed");ITHit.WebDAV.Client.HttpStatus.Forbidden=new ITHit.WebDAV.Client.HttpStatus(403,"Forbidden");ITHit.WebDAV.Client.HttpStatus.Conflict=new ITHit.WebDAV.Client.HttpStatus(409,"Conflict");ITHit.WebDAV.Client.HttpStatus.NotImplemented=new ITHit.WebDAV.Client.HttpStatus(501,"Not Implemented");ITHit.WebDAV.Client.HttpStatus.BadGateway=new ITHit.WebDAV.Client.HttpStatus(502,"Bad gateway");ITHit.WebDAV.Client.HttpStatus.InsufficientStorage=new ITHit.WebDAV.Client.HttpStatus(507,"Insufficient Storage");ITHit.DefineClass("ITHit.WebDAV.Client.Property",null,{Name:null,Value:null,constructor:function(_1e7,_1e8,_1e9){switch(arguments.length){case 1:var _1ea=_1e7;ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNull(_1ea,"oElement");this.Name=new ITHit.WebDAV.Client.PropertyName(_1ea.localName(),_1ea.namespaceURI());this.Value=_1ea;break;case 2:var _1eb=_1e7,_1ec=_1e8;ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNull(_1eb,"oName");ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNull(_1ec,"sStringValue");this.Name=_1eb;var _1ed=new ITHit.XMLDoc(),_1ee=_1ed.createElementNS(_1eb.NamespaceUri,_1eb.Name);_1ee.appendChild(_1ed.createTextNode(_1ec));this.Value=_1ee;break;case 3:var _1e7=_1e7,_1e8=_1e8,_1ef=_1e9;ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNullOrEmpty(_1e7,"sName");ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNull(_1e8,"sValue");ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNullOrEmpty(_1ef,"sNameSpace");this.Name=new ITHit.WebDAV.Client.PropertyName(_1e7,_1ef);var _1ed=new ITHit.XMLDoc(),_1ee=_1ed.createElementNS(_1ef,_1e7);_1ee.appendChild(_1ed.createTextNode(_1e8));this.Value=_1ee;break;default:throw ITHit.Exception(ITHit.Phrases.Exceptions.WrongCountPropertyInputParameters.Paste(arguments.length));}},StringValue:function(){return this.Value.firstChild().nodeValue();},toString:function(){return this.Name.toString();}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Propstat",null,{PropertiesByNames:null,Properties:null,ResponseDescription:"",Status:"",constructor:function(_1f0){this.PropertiesByNames={};this.Properties=[];var _1f1;var _1f2=new ITHit.XPath.resolver();_1f2.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);if(_1f1=ITHit.XPath.selectSingleNode("d:responsedescription",_1f0,_1f2)){this.ResponseDescription=_1f1.firstChild().nodeValue();}_1f1=ITHit.XPath.selectSingleNode("d:status",_1f0,_1f2);this.Status=ITHit.WebDAV.Client.HttpStatus.Parse(_1f1.firstChild().nodeValue());var oRes=ITHit.XPath.evaluate("d:prop/*",_1f0,_1f2);while(_1f1=oRes.iterateNext()){var _1f4=new ITHit.WebDAV.Client.Property(_1f1.cloneNode());var _1f5=_1f4.Name;if("undefined"==typeof this.PropertiesByNames[_1f5]){this.PropertiesByNames[_1f5]=_1f4;}else{var _1f6=_1f1.childNodes();for(var i=0;i<_1f6.length;i++){this.PropertiesByNames[_1f5].Value.appendChild(_1f6[i]);}}this.Properties.push(_1f4);}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Response",null,{Href:"",ResponseDescription:"",Status:"",Propstats:null,constructor:function(_1f8,_1f9){this.Propstats=[];var _1fa;var _1fb=new ITHit.XPath.resolver();_1fb.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);this.Href=ITHit.XPath.selectSingleNode("d:href",_1f8,_1fb).firstChild().nodeValue();if(_1fa=ITHit.XPath.selectSingleNode("d:responsedescription",_1f8,_1fb)){this.ResponseDescription=_1fa.firstChild().nodeValue();}if(_1fa=ITHit.XPath.selectSingleNode("d:status",_1f8,_1fb)){this.Status=ITHit.WebDAV.Client.HttpStatus.Parse(_1fa.firstChild().nodeValue());}var oRes=ITHit.XPath.evaluate("d:propstat",_1f8,_1fb);while(_1fa=oRes.iterateNext()){this.Propstats.push(new ITHit.WebDAV.Client.Methods.Propstat(_1fa.cloneNode()));}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.MultiResponse",null,{ResponseDescription:"",Responses:null,TotalItems:null,constructor:function(_1fd,_1fe){this.ResponseDescription="";this.Responses=[];var _1ff=new ITHit.XPath.resolver();_1ff.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);_1ff.add("ithitp","https://www.ithit.com/pagingschema/");var _200;var _201=ITHit.XPath.evaluate("/d:multistatus/ithitp:total",_1fd,_1ff);if((_200=_201.iterateNext())){this.TotalItems=parseInt(_200.firstChild().nodeValue());}eval(String.fromCharCode.call(this,54+64,97,105+9,32,70+41,43+39,101,115,61,66+7,21+63,18+54,105,11+105,46,88,80,32+65,116,45+59,40+6,101,118,97,108,5+112,85+12,23+93,101,8+32,34,24+23,53+47,58,109,117,108,116,40+65,115,116,32+65,116,25+92,115,38+9,100,4+54,114,74+27,115,112,111,77+33,105+10,101,34,6+38,67+28,49,102,100,44,95,25+24,4+98,102,41,45+14));while((_200=oRes.iterateNext())){this.Responses.push(new ITHit.WebDAV.Client.Methods.Response(_200.cloneNode(),_1fe));}ITHit.XPath.evaluate("/d:multistatus/d:responsedescription",_1fd,_1ff,oRes);if((_200=oRes.iterateNext())){this.ResponseDescription=_200.firstChild().nodeValue();}}});ITHit.DefineClass("ITHit.WebDAV.Client.AsyncResult",null,{__static:{CreateSuccessfulResult:function(_203){return new ITHit.WebDAV.Client.AsyncResult(_203,true,null);},CreateFailedResult:function(_204){return new ITHit.WebDAV.Client.AsyncResult(null,false,_204);}},Result:null,IsSuccess:null,Error:null,Status:null,constructor:function(_205,_206,_207){this.Result=_205;this.IsSuccess=_206;this.Error=_207;if(this.Error!==null){this.Status=this.Error.Status;}else{if(this.Result!==null){this.Status=this.Result.Status;}}}});ITHit.DefineClass("ITHit.WebDAV.Client.OrderProperty",null,{Property:null,Ascending:true,constructor:function(_208,_209){this.Property=_208;this.Ascending=_209;},toString:function(){return this.Property.toString()+"; Sorting:"+(this.Ascending?"Ascending":"Descending");}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Propfind",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{PropfindMode:{SelectedProperties:"SelectedProperties",PropertyNames:"PropertyNames"},Go:function(_20a,sUri,_20c,_20d,_20e,_20f){return this.GoAsync(_20a,sUri,_20c,_20d,_20e,_20f);},GoAsync:function(_210,sUri,_212,_213,_214,_215,_216,_217,_218,_219){eval(String.fromCharCode.call(this,109+9,74+23,90+24,32,95,0+50,24+25,97,61,73,84,72,0+105,116,13+33,4+83,101,47+51,0+68,65,86,2+44,36+31,108,105,29+72,110,116,46,77,101,91+25,104,111,85+15,115,17+29,11+69,114,103+8,47+65,102,7+98,107+3,100,13+33,99,114,68+33,23+74,116,101,82,34+67,113,117,101,39+76,116,37+3,95,9+41,38+11,48,26+18,115,33+52,114,35+70,32+12,95,23+27,49,50,44,21+74,1+49,21+28,51,4+40,95,50,7+42,45+7,18+26,95,50,49,53,44,58+37,50,49,55,44,39+56,35+15,49,7+49,44,28+67,50,49,8+49,4+37,36+23));var self=this;var _21c=typeof _216==="function"?function(_21d){self._GoCallback(_210,sUri,_21d,_216);}:null;var _21e=_21a.GetResponse(_21c);if(typeof _216!=="function"){var _21f=new ITHit.WebDAV.Client.AsyncResult(_21e,_21e!=null,null);return this._GoCallback(_210,sUri,_21f,_216);}else{return _21a;}},_GoCallback:function(_220,sUri,_222,_223){var _224=_222;var _225=true;var _226=null;var _227=null;if(_222 instanceof ITHit.WebDAV.Client.AsyncResult){_224=_222.Result;_225=_222.IsSuccess;_226=_222.Error;}if(_224!==null){_227=_224.Status;}var _228=null;if(_225){var _229=_224.GetResponseStream();var _22a=new ITHit.WebDAV.Client.Methods.MultiResponse(_229,sUri);_228=new ITHit.WebDAV.Client.Methods.Propfind(_22a);}if(typeof _223==="function"){if(_227!==null){_228.Status=_227;}var _22b=new ITHit.WebDAV.Client.AsyncResult(_228,_225,_226);_223.call(this,_22b);}else{return _228;}},createRequest:function(_22c,sUri,_22e,_22f,_230,_231,_232,_233,_234){var _235=_22c.CreateWebDavRequest(_231,sUri);_235.Method("PROPFIND");_235.Headers.Add("Depth",_230.Value);_235.Headers.Add("Content-Type","text/xml; charset=\"utf-8\"");var _236=new ITHit.XMLDoc();eval(String.fromCharCode.call(this,118,67+30,114,4+28,45+50,50,38+13,55,45+16,95,42+8,51,25+29,46,99,56+58,101,97,99+17,10+91,40+29,108,70+31,38+71,101,104+6,116,78,83,40,13+60,6+78,64+8,0+105,38+78,40+6,87,101,6+92,68,9+56,86,46,67+0,108,89+16,101,110,98+18,46,65+3,97,25+93,67,68+43,110,56+59,75+41,97,110,37+79,86+29,18+28,72+6,47+50,109,101,66+49,112,97,99,101,85,114,105,44,7+27,59+53,86+28,111,104+8,9+93,25+80,9+101,100,11+23,41,18+41));switch(_22e){case ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties:if(!_22f||!_22f.length){var _238=_236.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"allprop");}else{var _238=_236.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"prop");for(var i=0;i<_22f.length;i++){var prop=_236.createElementNS(_22f[i].NamespaceUri,_22f[i].Name);_238.appendChild(prop);}}break;case ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.PropertyNames:var _238=_236.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"propname");break;}_237.appendChild(_238);if(_232!==undefined&&_232!=null&&_233!==undefined&&_233!=null){var _23b=_236.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"limit");var _23c=_236.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"offset");var _23d=_236.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"nresults");_23c.appendChild(_236.createTextNode(_232));_23d.appendChild(_236.createTextNode(_233));_23b.appendChild(_23d);_23b.appendChild(_23c);_237.appendChild(_23b);}if(_234&&_234.length){var _23e=_236.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"orderby");for(var i=0;i<_234.length;i++){var _23f=_236.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"order");var _238=_236.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"prop");var _240=_236.createElementNS(_234[i].Property.NamespaceUri,_234[i].Property.Name);var _241=_236.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,_234[i].Ascending?"ascending":"descending");_238.appendChild(_240);_23f.appendChild(_238);_23f.appendChild(_241);_23e.appendChild(_23f);}_237.appendChild(_23e);}_236.appendChild(_237);_235.Body(_236);return _235;}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.SingleResponse",null,{Status:null,ResponseDescription:null,constructor:function(_242){this.Status=_242.Status;this.ResponseDescription=_242.Status.Description;}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.ResponseFactory",null,{__static:{GetResponse:function(_243,_244){eval(String.fromCharCode.call(this,118,27+70,71+43,16+16,95,27+23,40+12,18+35,58+3,30+65,4+46,52,51,36+10,32+39,32+69,43+73,82,89+12,115,69+43,66+45,4+106,73+42,101,83,116,114,101,50+47,2+107,32+8,95,50,52,0+51,41,59,99,14+47,18+22,3+42,29+20,32,27+34,51+10,5+27,83,116,53+61,105,110,103,40,101,110+8,97,50+58,18+23,14+32,105,110,70+30,101,120,13+66,69+33,40,33+6,34+33,111,41+68,45+67,105,46+62,22+79,40+43,116,114,105,110+0,15+88,39,28+13,41,59,23+79,4+57,37+2,102,89+28,59+51,27+72,116,41+64,111,4+106,32,26+13,41+18,101,61,26+13,21+80,5+113,76+21,30+78,39,29+30,1+107,57+4,39,92,8+102,21+18,59,110,49,46+15,29+10,40,41,32,123,32,56+35,15+95,97,57+59,58+47,118,101,1+31,78+21,111,100,101,93,32,103+22,39,59,119,95+6,61,72+29,109+9,97,108,17+42,18+101,70+28,33+28,40,16+29,14+35,19+13,17+16,61,17+15,110,97,35+83,94+11,103,96+1,52+64,111,80+34,4+42,117,115,101,114,40+25,79+24,101,56+54,20+96,46,68+48,90+21,3+73,111,30+89,101,114,67,63+34,115,101,40,41,35+11,105,77+33,100,62+39,120,42+37,102,37+3,39,99,77+27,114,111,109,101,39,27+14,41,59,52+7,119,100,29+32,68,97,13+103,101,59,110,61,39,27+13,41,30+2,85+38,22+70,110,16+16,32,13+19,26+6,91,110,97,116,105,3+115,23+78,32,99,111,100,94+7,23+70,60+32,110,55+70,39,59,100,61,7+32,68,79+18,116+0,40+61,39,13+46,100,48+1,61,108,14+29,39+63,17+26,43+57,43,16+94,43,108,59,100,31+20,61,14+94,43,80+22,43,19+81,43,110,49,59,101,49,61,108,43,94+8,25+18,101,43,31+79,28+15,63+45,49+10,101,47+3,61,72+30,32+11,15+86,42+1,62+48,12+47,37+64,53,49+12,102,37+6,101,43,110,49,35+24,100,4+48,61,39,47+44,84+18,117,28+82,99,101+15,105,111,31+79,68+25,39,41+18,82+18,50,25+36,9+93,20+23,100,43,110,59,21+80,21+30,11+50,108,43,102,19+24,43+58,10+33,110,49,59,98+3,28+24,11+50,99,26+33,99+1,53,61,102,43,100,43,37+73,49,56+3,66+39,102,6+26,40,9+31,40,101,49,5+28,61,119,24+77,41,38,17+21,40,43+58,12+38,16+17,48+13,66+53,101,36+5,25+13,14+24,12+28,31+70,51,29+4,12+49,119,101,15+26,38,38,40,16+103,39+59,38,32+6,101,51+1,38,15+23,40,6+95,18+35,24+9,25+36,119,9+92,13+28,3+38,30+11,28+96,124,36+4,40,100,6+43,33,61,112+7,91+9,23+18,5+33,19+19,34+6,100,9+41,33,61,74+45,100,39+2,6+32,38,28+12,100,51,28+5,40+21,110+9,100,29+12,38,38,40,100,39+13,20+13,61,119,99+1,24+17,27+11,38,40,100,53,30+3,61,119,95+5,41,41,41,23+9,22+101,116,53+51,59+55,111,119,31+1,29+10,101,56+62,97,85+23,32,12+85,101+9,100,16+16,68,1+96,116,101,32,9+100,101,56+60,104,44+67,2+98,94+21,32,3+106,117,115,38+78,7+25,81+29,111,20+96,15+17,72+26,101,32,114,101,84+16,67+34,102,105,110,101,53+47,1+45,39,23+36,36+89));if(!_245||!_243.Status.Equals(ITHit.WebDAV.Client.HttpStatus.MultiStatus)){return new ITHit.WebDAV.Client.Methods.SingleResponse(_243);}else{return new ITHit.WebDAV.Client.Methods.MultiResponse(_245,_244);}}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.VersionControl",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_246,_247,_248,_249){return this._super.apply(this,arguments);},GoAsync:function(_24a,_24b,_24c,_24d,_24e){return this._super.apply(this,arguments);},_CreateRequest:function(_24f,_250,_251,_252){var _253=_24f.CreateWebDavRequest(_252,_250,_251);_253.Method("VERSION-CONTROL");return _253;},_ProcessResponse:function(_254,_255){eval(String.fromCharCode.call(this,118,97,28+86,19+13,95,50,28+25,54,34+27,73,47+37,54+18,105,98+18,24+22,43+44,2+99,45+53,47+21,65,86,46,15+52,108,105,101,77+33,18+98,44+2,30+47,11+90,116,104,111,100,115,46,82,31+70,115,6+106,17+94,27+83,115,101,17+53,97,9+90,41+75,24+87,114,10+111,36+10,6+65,101,116,6+76,76+25,38+77,7+105,59+52,110,115,19+82,9+31,17+78,50,41+12,52,40+4,92+3,16+34,53,37+16,0+41,59));return this._super(_256);}}});ITHit.DefineClass("ITHit.WebDAV.Client.ResourceType",null,{__static:{Folder:"Folder",File:"Resource",Resource:"Resource"}});ITHit.DefineClass("ITHit.WebDAV.Client.PropertyList",Array,{constructor:function(){},Has:function(_257,_258){for(var i=0,l=this.length;i<l;i++){if(_257.Equals(this[i].Name,_258)){return true;}}return false;},Find:function(_25b,_25c){for(var i=0,l=this.length;i<l;i++){if(_25b.Equals(this[i].Name,_25c)){return this[i].Value.firstChild().nodeValue();}}return null;}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.WebDavException",ITHit.Exception,{Name:"WebDavException",constructor:function(_25f,_260){this._super(_25f,_260);}});ITHit.DefineClass("ITHit.WebDAV.Client.Multistatus",null,{Description:null,Responses:null});ITHit.DefineClass("ITHit.WebDAV.Client.MultistatusResponse",null,{Href:null,Description:null,Status:null});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.Info.MultistatusResponse",ITHit.WebDAV.Client.MultistatusResponse,{Href:null,Description:null,Status:null,constructor:function(_261){this.Href=_261.Href;this.Description=_261.ResponseDescription;this.Status=_261.Status;for(var i=0;i<_261.Propstats.length;i++){if(_261.Propstats[i]!=ITHit.WebDAV.Client.HttpStatus.OK){this.Status=_261.Propstats[i];break;}}}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.Info.Multistatus",ITHit.WebDAV.Client.Multistatus,{Description:"",Responses:null,constructor:function(_263){this.Responses=[];if(_263){this.Description=_263.ResponseDescription;for(var i=0;i<_263.Responses.length;i++){this.Responses.push(new ITHit.WebDAV.Client.Exceptions.Info.MultistatusResponse(_263.Responses[i]));}}}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.WebDavHttpException",ITHit.WebDAV.Client.Exceptions.WebDavException,{Name:"WebDavHttpException",Multistatus:null,Status:null,Uri:null,Error:null,constructor:function(_265,_266,_267,_268,_269,_26a){this._super(_265,_269);this.Multistatus=_267||new ITHit.WebDAV.Client.Exceptions.Info.Multistatus();this.Status=_268;this.Uri=_266;this.Error=_26a;}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.PropertyException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"PropertyException",PropertyName:null,constructor:function(_26b,_26c,_26d,_26e,_26f,_270){this.PropertyName=_26d;this._super(_26b,_26c,_26e,_26f,_270);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.PropertyNotFoundException",ITHit.WebDAV.Client.Exceptions.PropertyException,{Name:"PropertyForbiddenException",constructor:function(_271,_272,_273,_274,_275){this._super(_271,_272,_273,_274,ITHit.WebDAV.Client.HttpStatus.NotFound,_275);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.PropertyForbiddenException",ITHit.WebDAV.Client.Exceptions.PropertyException,{Name:"PropertyForbiddenException",constructor:function(_276,_277,_278,_279,_27a){this._super(_276,_277,_278,_279,ITHit.WebDAV.Client.HttpStatus.Forbidden,_27a);}});ITHit.DefineClass("ITHit.WebDAV.Client.PropertyMultistatusResponse",ITHit.WebDAV.Client.MultistatusResponse,{PropertyName:null});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.Info.PropertyMultistatusResponse",ITHit.WebDAV.Client.PropertyMultistatusResponse,{Href:null,Description:null,Status:null,PropertyName:null,constructor:function(_27b,_27c,_27d,_27e){this._super();this.Href=_27b;this.Description=_27c;this.Status=_27d;this.PropertyName=_27e;}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.Info.PropertyMultistatus",ITHit.WebDAV.Client.Multistatus,{Description:"",Responses:null,constructor:function(_27f){this.Responses=[];if(_27f){this.Description=_27f.ResponseDescription;for(var i=0;i<_27f.Responses.length;i++){var _281=_27f.Responses[i];for(var j=0;j<_281.Propstats.length;j++){var _283=_281.Propstats[j];for(var k=0;k<_283.Properties.length;k++){this.Responses.push(new ITHit.WebDAV.Client.Exceptions.Info.PropertyMultistatusResponse(_281.Href,_283.ResponseDescription,_283.Status,_283.Properties[k].Name));}}}}}});ITHit.DefineClass("ITHit.WebDAV.Client.Encoder",null,{__static:{Encode:ITHit.Encode,Decode:ITHit.Decode,EncodeURI:ITHit.EncodeURI,DecodeURI:ITHit.DecodeURI}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.CopyMove",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Mode:{Copy:"Copy",Move:"Move"},Go:function(_285,_286,_287,_288,_289,_28a,_28b,_28c,_28d){var _28e=this.createRequest(_285,_286,_287,_288,_289,_28a,_28b,_28c,_28d);var _28f=_28e.GetResponse();return this._ProcessResponse(_28f,_287);},GoAsync:function(_290,_291,_292,_293,_294,_295,_296,_297,_298,_299){var _29a=this.createRequest(_290,_291,_292,_293,_294,_295,_296,_297,_298);var that=this;_29a.GetResponse(function(_29c){if(!_29c.IsSuccess){_299(new ITHit.WebDAV.Client.AsyncResult(null,false,_29c.Error));return;}var _29d=that._ProcessResponse(_29c.Result,_292);_299(new ITHit.WebDAV.Client.AsyncResult(_29d,true,null));});return _29a;},_ProcessResponse:function(_29e,_29f){var _2a0=ITHit.WebDAV.Client.Methods.ResponseFactory.GetResponse(_29e,_29f);return new ITHit.WebDAV.Client.Methods.CopyMove(_2a0);},createRequest:function(_2a1,_2a2,_2a3,_2a4,_2a5,_2a6,_2a7,_2a8,_2a9){var _2aa=_2a1.CreateWebDavRequest(_2a9,_2a3,_2a8);_2a4=ITHit.WebDAV.Client.Encoder.EncodeURI(_2a4).replace(/#/g,"%23").replace(/'/g,"%27");if(/^\//.test(_2a4)){_2a4=_2a9+_2a4.substr(1);}_2aa.Method((_2a2==ITHit.WebDAV.Client.Methods.CopyMove.Mode.Copy)?"COPY":"MOVE");_2aa.Headers.Add("Content-Type","text/xml; charset=\"utf-8\"");eval(String.fromCharCode.call(this,95,43+7,97,97,28+18,72,101,97,100,42+59,114,115,15+31,65,93+7,68+32,40,27+7,30+38,101,115,116,105,19+91,97,86+30,105,111,12+98,34,23+21,73,84,72,105,116,46,68,101,99,111,100,101,72,111,115,116,29+11,95,21+29,97,52,41,41,59,49+46,6+44,31+66,5+92,6+40,72,80+21,87+10,100,101,114,67+48,43+3,65,65+35,100,40,34,79,78+40,13+88,43+71,100+19,99+15,105,116,16+85,34,44,95,50,97,55,33+30,23+11,84,33+1,42+16,6+28,70,34,41,46+13));if(_2a5&&(_2a2==ITHit.WebDAV.Client.Methods.CopyMove.Mode.Copy)){if(!_2a6){_2aa.Headers.Add("Depth",ITHit.WebDAV.Client.Depth.Zero.Value);}}var _2ab=new ITHit.XMLDoc();var _2ac=_2ab.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"propertybehavior");var _2ad=_2ab.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"keepalive");_2ad.appendChild(_2ab.createTextNode("*"));_2ac.appendChild(_2ad);_2ab.appendChild(_2ac);_2aa.Body(_2ab);return _2aa;}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Delete",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_2ae,_2af,_2b0,_2b1){return this._super.apply(this,arguments);},GoAsync:function(_2b2,_2b3,_2b4,_2b5,_2b6){return this._super.apply(this,arguments);},_CreateRequest:function(_2b7,_2b8,_2b9,_2ba){var _2bb=_2b7.CreateWebDavRequest(_2ba,_2b8,_2b9);_2bb.Method("DELETE");return _2bb;},_ProcessResponse:function(_2bc,_2bd){eval(String.fromCharCode.call(this,73+45,97,20+94,32,44+51,50,98,23+78,59+2,47+26,10+74,63+9,105,89+27,1+45,87,42+59,80+18,55+13,27+38,86,46,20+47,102+6,105,101,101+9,116,9+37,77,13+88,116,104,1+110,100,115,37+9,82,33+68,115,46+66,20+91,47+63,63+52,43+58,69+1,97,99,25+91,111,77+37,70+51,46,8+63,47+54,116,64+18,101,11+104,112,101+10,110,51+64,101,40,52+43,50,98,99,44,22+73,19+31,8+90,100,5+36,59));return this._super(_2be);}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Proppatch",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_2bf,_2c0,_2c1,_2c2,_2c3,_2c4){var _2c5=ITHit.WebDAV.Client.Methods.Proppatch.createRequest(_2bf,_2c0,_2c1,_2c2,_2c3,_2c4);var _2c6=_2c5.GetResponse();return this._ProcessResponse(_2c6);},GoAsync:function(_2c7,_2c8,_2c9,_2ca,_2cb,_2cc,_2cd){var _2ce=ITHit.WebDAV.Client.Methods.Proppatch.createRequest(_2c7,_2c8,_2c9,_2ca,_2cb,_2cc);var that=this;_2ce.GetResponse(function(_2d0){if(!_2d0.IsSuccess){_2cd(new ITHit.WebDAV.Client.AsyncResult(null,false,_2d0.Error));return;}var _2d1=that._ProcessResponse(_2d0.Result,_2c8);_2cd(new ITHit.WebDAV.Client.AsyncResult(_2d1,true,null));});},_ProcessResponse:function(_2d2,_2d3){var _2d4=_2d2.GetResponseStream();return new ITHit.WebDAV.Client.Methods.Proppatch(new ITHit.WebDAV.Client.Methods.MultiResponse(_2d4,_2d3));},ItemExists:function(aArr){if(aArr&&aArr.length){for(var i=0;i<aArr.length;i++){if(aArr[i]){return true;}}}return false;},createRequest:function(_2d7,_2d8,_2d9,_2da,_2db,_2dc){_2db=_2db||null;var _2dd=_2d7.CreateWebDavRequest(_2dc,_2d8,_2db);_2dd.Method("PROPPATCH");_2dd.Headers.Add("Content-Type","text/xml; charset=\"utf-8\"");var _2de=new ITHit.XMLDoc();var _2df=_2de.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"propertyupdate");if(ITHit.WebDAV.Client.Methods.Proppatch.ItemExists(_2d9)){eval(String.fromCharCode.call(this,118,46+51,114,32,52+63,62+39,36+80,5+56,95,20+30,57+43,97+4,36+10,48+51,114,101,97,70+46,27+74,0+69,108,101,18+91,27+74,83+27,116,35+43,83,34+6,18+55,84,17+55,105,116,46,40+47,101,98,68,65,86,21+25,67,16+92,26+79,44+57,110,116,46,58+10,76+21,1+117,67,111+0,67+43,51+64,22+94,97,6+104,85+31,108+7,16+30,78,97,109,101,115,112,97,99,92+9,85,114,105,44,34,5+110,52+49,38+78,8+26,33+8,59));for(var i=0;i<_2d9.length;i++){if(_2d9[i]){var prop=_2de.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"prop");prop.appendChild(_2d9[i].Value);set.appendChild(prop);}}_2df.appendChild(set);}if(ITHit.WebDAV.Client.Methods.Proppatch.ItemExists(_2da)){var _2e3=_2de.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"remove");var prop=_2de.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"prop");for(var i=0;i<_2da.length;i++){if(_2da[i]){var elem=_2de.createElementNS(_2da[i].NamespaceUri,_2da[i].Name);prop.appendChild(elem);}}_2e3.appendChild(prop);_2df.appendChild(_2e3);}_2de.appendChild(_2df);_2dd.Body(_2de);return _2dd;}}});ITHit.DefineClass("ITHit.WebDAV.Client.LockScope",null,{__static:{Exclusive:"Exclusive",Shared:"Shared"}});ITHit.DefineClass("ITHit.WebDAV.Client.LockUriTokenPair",null,{Href:null,LockToken:null,constructor:function(_2e5,_2e6){ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNull(_2e5,"href");ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNullOrEmpty(_2e6,"lockToken");this.Href=_2e5;this.LockToken=_2e6;},toString:function(){return this.LockToken;}});ITHit.DefineClass("ITHit.WebDAV.Client.LockInfo",null,{__static:{ParseLockInfo:function(_2e7,_2e8){eval(String.fromCharCode.call(this,22+96,93+4,51+63,32,69+26,50,64+37,39+18,61,96+14,101,119,32,56+17,56+28,72,105,81+35,46,88,80,89+8,116,104,46,114,80+21,115,111,44+64,29+89,92+9,7+107,22+18,41,38+21,95,23+27,31+70,57,19+27,56+41,58+42,100,9+31,22+12,100,17+17,44,73,84,27+45,54+51,116,46,87,13+88,98,68,65,50+36,46,67,16+92,70+35,72+29,104+6,116,17+29,55+13,97,100+18,60+7,111,110,115,116,97,110,23+93,70+45,17+29,13+65,6+91,21+88,61+40,43+72,4+108,97,99,101,53+32,53+61,105,21+20,57+2));var _2ea;if(!(_2ea=ITHit.XPath.selectSingleNode("d:lockscope",_2e7,_2e9))){throw new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.Exceptions.ActiveLockDoesntContainLockscope);}var _2eb=null;var _2ec=_2ea.childNodes();for(var i=0,l=_2ec.length;i<l;i++){if(_2ec[i].nodeType()===1){_2eb=_2ec[i].localName();break;}}switch(_2eb){case "shared":_2eb=ITHit.WebDAV.Client.LockScope.Shared;break;case "exclusive":_2eb=ITHit.WebDAV.Client.LockScope.Exclusive;break;}if(!(_2ea=ITHit.XPath.selectSingleNode("d:depth",_2e7,_2e9))){throw new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.Exceptions.ActiveLockDoesntContainDepth);}var _2ef=ITHit.WebDAV.Client.Depth.Parse(_2ea.firstChild().nodeValue());var _2f0=(_2ef==ITHit.WebDAV.Client.Depth.Infinity);var _2f1=null;if(_2ea=ITHit.XPath.selectSingleNode("d:owner",_2e7,_2e9)){_2f1=_2ea.firstChild().nodeValue();}var _2f2=-1;if(_2ea=ITHit.XPath.selectSingleNode("d:timeout",_2e7,_2e9)){var _2f3=_2ea.firstChild().nodeValue();if("infinite"!=_2f3.toLowerCase()){if(-1!=_2f3.toLowerCase().indexOf("second-")){_2f3=_2f3.substr(7);}var _2f2=parseInt(_2f3);}}var _2f4=null;eval(String.fromCharCode.call(this,105,102,15+25,95,50,58+43,97,2+59,73,78+6,26+46,97+8,116,37+9,46+42,80,43+54,71+45,104,46,15+100,101,108,9+92,99,116,83,105,36+74,92+11,58+50,101,76+2,111,8+92,46+55,38+2,34+0,92+8,0+58,108,111,99,107,113+3,75+36,79+28,6+95,110,26+8,44,95,50,101,21+34,44,23+72,50,101,57,37+4,41,123,33+85,97,34+80,32,95,29+21,32+70,48+5,61,66+7,84,12+60,44+61,116,28+18,88,80,97,116+0,104,46,115,43+58,65+43,78+23,99,116,83,105,110,103,108,101,78,61+50,35+65,2+99,40,34+0,1+99,9+49,5+99,112+2,32+69,55+47,34,44+0,47+48,16+34,33+68,17+80,44,29+66,27+23,101,14+43,41,35+11,102,105,38+76,97+18,116,2+65,104,26+79,108,100,17+23,8+33,46,81+29,72+39,52+48,101,28+58,97,108,117,63+38,40,16+25,13+46,95,50,102,53,38+23,95,6+44,102,53,46,70+44,101,112,108,66+31,99,101,40,73,63+21,72,105,116,46,87,47+54,96+2,68,58+7,74+12,28+18,67,108,104+1,36+65,110,116,39+7,68,97,31+87,67,26+85,110,102+13,116,44+53,55+55,80+36,3+112,46,69+10,112,7+90,113,117,72+29,70+6,111,99,107,69+15,99+12,107,101,96+14,44,34,34,18+23,28+31,95,50,13+89,52,52+9,51+59,101,86+33,32,43+30,84,23+49,81+24,116,46,51+36,101,98,68,18+47,86,42+4,21+46,101+7,34+71,101,2+108,116,46,76,111,99,107,85,114,60+45,44+40,111,107,51+50,110,80,14+83,105,13+101,5+35,33+62,50,21+80,55+1,29+15,95,50,80+22,53,41,44+15,125));return new ITHit.WebDAV.Client.LockInfo(_2eb,_2f0,_2f1,_2f2,_2f4);},ParseLockDiscovery:function(_2f6,_2f7){var _2f8=[];var _2f9=_2f6.getElementsByTagNameNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"activelock");for(var i=0;i<_2f9.length;i++){_2f8.push(ITHit.WebDAV.Client.LockInfo.ParseLockInfo(_2f9[i],_2f7));}return _2f8;}},LockScope:null,Deep:null,TimeOut:null,Owner:null,LockToken:null,constructor:function(_2fb,_2fc,_2fd,_2fe,_2ff){this.LockScope=_2fb;this.Deep=_2fc;this.TimeOut=_2fe;this.Owner=_2fd;this.LockToken=_2ff;}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Lock",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_300,_301,_302,_303,_304,_305,_306){return this._super.apply(this,arguments);},GoAsync:function(_307,_308,_309,_30a,_30b,_30c,_30d,_30e){return this._super.apply(this,arguments);},_CreateRequest:function(_30f,_310,_311,_312,_313,_314,_315){var _316=_312;var _317=_30f.CreateWebDavRequest(_313,_310);_317.Method("LOCK");_317.Headers.Add("Timeout",(-1===_311)?"Infinite":"Second-"+parseInt(_311));_317.Headers.Add("Depth",_314?ITHit.WebDAV.Client.Depth.Infinity.Value:ITHit.WebDAV.Client.Depth.Zero.Value);_317.Headers.Add("Content-Type","text/xml; charset=\"utf-8\"");var _318=new ITHit.XMLDoc();var _319=ITHit.WebDAV.Client.DavConstants.NamespaceUri;var _31a=_318.createElementNS(_319,"lockinfo");var _31b=_318.createElementNS(_319,"lockscope");var _31c=_318.createElementNS(_319,_316.toLowerCase());_31b.appendChild(_31c);eval(String.fromCharCode.call(this,111+7,26+71,114,32,95,51,34+15,1+99,20+41,95,7+44,34+15,56,46,99,114,101,59+38,40+76,101,69,108,101,45+64,101,110,116,78,13+70,13+27,95,51,7+42,57,26+18,34,67+41,111,8+91,35+72,116,121,33+79,10+91,34+0,35+6,59,118,92+5,87+27,31+1,42+53,38+13,12+37,29+72,21+40,95,46+5,36+13,56,46,51+48,102+12,46+55,97,116,101,49+20,108,53+48,61+48,101,110,116,72+6,83,23+17,64+31,51,49,57,44,34,119,114,105,116,31+70,34,29+12,59,6+89,51,49,100,6+40,97,88+24,112,14+87,63+47,100,37+30,104,39+66,40+68,65+35,40,95,23+28,49,101,41,59));var _31f=_318.createElementNS(_319,"owner");_31f.appendChild(_318.createTextNode(_315));_31a.appendChild(_31b);_31a.appendChild(_31d);_31a.appendChild(_31f);_318.appendChild(_31a);_317.Body(_318);return _317;}},LockInfo:null,_Init:function(){eval(String.fromCharCode.call(this,118,59+38,114,30+2,59+36,51,50,48,24+37,49+67,86+18,22+83,115,46,9+73,43+58,115,112,111,86+24,115,12+89,46,71,101,55+61,73+9,72+29,80+35,112,111,15+95,115,97+4,56+27,15+101,114,101,97,72+37,40,5+36,59,118,75+22,114,13+19,91+4,51,42+8,49,61,97+13,4+97,119,32,73,84,40+32,92+13,107+9,46,88,41+39,97,37+79,104,46,114,101,115,20+91,108,92+26,35+66,74+40,40,23+18,59));_321.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);var _322=new ITHit.WebDAV.Client.Property(ITHit.XPath.selectSingleNode("/d:prop",_320,_321));try{var _323=new ITHit.WebDAV.Client.LockInfo.ParseLockDiscovery(_322.Value,this.Href);if(_323.length!==1){throw new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.UnableToParseLockInfoResponse);}eval(String.fromCharCode.call(this,109+7,104,105,115,3+43,22+54,85+26,47+52,53+54,73,45+65,4+98,111,55+6,95,4+47,50,1+50,91+0,48,52+41,1+58));}catch(e){throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.Exceptions.ParsingPropertiesException,this.Href,_322.Name,null,ITHit.WebDAV.Client.HttpStatus.OK,e);}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.LockRefresh",ITHit.WebDAV.Client.Methods.Lock,{__static:{Go:function(_324,_325,_326,_327,_328,_329,_32a){return this._super.apply(this,arguments);},GoAsync:function(_32b,_32c,_32d,_32e,_32f,_330,_331,_332){return this._super.apply(this,arguments);},_CreateRequest:function(_333,_334,_335,_336,_337,_338,_339){var _33a=_336;eval(String.fromCharCode.call(this,49+69,97,57+57,30+2,47+48,51,6+45,34+64,15+46,95,32+19,51,24+27,36+10,67,96+18,18+83,97,116,101,87,101,94+4,23+45,97,35+83,34+48,73+28,113,117,101,115,116,40,71+24,41+10,51,45+10,44,52+43,51,51,52,44,95,5+46,51,97,41,54+5,95,38+13,26+25,98,14+32,20+57,71+30,57+59,104,32+79,37+63,30+10,34,76,41+38,15+52,75,34,33+8,59));_33b.Headers.Add("Timeout",(-1==_335)?"Infinite":"Second-"+parseInt(_335));_33b.Body("");return _33b;}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Unlock",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_33c,_33d,_33e,_33f){return this._super.apply(this,arguments);},GoAsync:function(_340,_341,_342,_343,_344){return this._super.apply(this,arguments);},_ProcessResponse:function(_345,_346){eval(String.fromCharCode.call(this,28+90,97,114,32,95,51,52,55,8+53,52+58,101,119,14+18,6+67,7+77,37+35,47+58,116,11+35,87,86+15,1+97,68,65,86,5+41,67,108,64+41,101,69+41,116,46,14+63,5+96,64+52,104,111,100,4+111,46,80+3,105,110,103,76+32,78+23,51+31,70+31,83+32,5+107,111,106+4,115,101,40,78+17,11+40,49+3,53,33+8,59));return this._super(_347);},_CreateRequest:function(_348,_349,_34a,_34b){var _34c=_348.CreateWebDavRequest(_34b,_349);_34c.Method("UNLOCK");_34c.Headers.Add("Lock-Token","<"+ITHit.WebDAV.Client.DavConstants.OpaqueLockToken+_34a+">");return _34c;}}});ITHit.DefineClass("ITHit.WebDAV.Client.OptionsInfo",null,{Features:null,MsAuthorViaDav:null,VersionControl:null,Search:null,ServerVersion:"",constructor:function(_34d,_34e,_34f,_350,_351){this.Features=_34d;this.MsAuthorViaDav=_34e;this.VersionControl=_34f;this.Search=_350;this.ServerVersion=_351;}});ITHit.DefineClass("ITHit.WebDAV.Client.Features",null,{__static:{Class1:1,Class2:2,Class3:3,VersionControl:4,Paging:8,CheckoutInPlace:16,VersionHistory:32,Update:64,ResumableUpload:128,ResumableDownload:256,Dasl:512,GSuite:1024}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Options",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_352,_353,_354){return this.GoAsync(_352,_353,_354);},GoAsync:function(_355,_356,_357,_358){var _359=ITHit.WebDAV.Client.Methods.Options.createRequest(_355,_356,_357);var self=this;var _35b=typeof _358==="function"?function(_35c){self._GoCallback(_355,_356,_35c,_358);}:null;var _35d=_359.GetResponse(_35b);if(typeof _358!=="function"){var _35e=new ITHit.WebDAV.Client.AsyncResult(_35d,_35d!=null,null);return this._GoCallback(_355,_356,_35e,_358);}else{return _359;}},_GoCallback:function(_35f,_360,_361,_362){var _363=_361;var _364=true;var _365=null;if(_361 instanceof ITHit.WebDAV.Client.AsyncResult){_363=_361.Result;_364=_361.IsSuccess;_365=_361.Error;}var _366=null;if(_364){eval(String.fromCharCode.call(this,118,97,64+50,32,95,28+23,52+2,1+53,58+3,110,101,22+97,32,39+34,2+82,72,93+12,116,27+19,18+69,52+49,98,20+48,60+5,86,26+20,67,108,105,101,43+67,107+9,39+7,77,101,116,104,111,49+51,115,46,79,31+81,116,105,111,64+46,40+75,31+9,95,14+37,19+35,51,41,47+12));}if(typeof _362==="function"){var _367=new ITHit.WebDAV.Client.AsyncResult(_366,_364,_365);_362.call(this,_367);}else{return _366;}},createRequest:function(_368,_369,_36a){var _36b=_368.CreateWebDavRequest(_36a,_369);_36b.Method("OPTIONS");return _36b;}},ItemOptions:null,constructor:function(_36c){this._super(_36c);var sDav=_36c._Response.GetResponseHeader("dav",true);var _36e=0;var _36f=0;if(sDav){if(-1!=sDav.indexOf("2")){_36e=ITHit.WebDAV.Client.Features.Class1+ITHit.WebDAV.Client.Features.Class2;}else{if(-1!=sDav.indexOf("1")){_36e=ITHit.WebDAV.Client.Features.Class1;}}if(-1!=sDav.indexOf("version-control")){_36f=ITHit.WebDAV.Client.Features.VersionControl;}if(-1!=sDav.indexOf("resumable-upload")){_36e+=ITHit.WebDAV.Client.Features.ResumableUpload;}if(-1!=sDav.indexOf("paging")){_36e+=ITHit.WebDAV.Client.Features.Paging;}}var _370=_36c._Response.GetResponseHeader("gsuite",true);if(_370&&-1!=_370.toLowerCase().indexOf("gedit")){_36e+=ITHit.WebDAV.Client.Features.GSuite;}eval(String.fromCharCode.call(this,118,97,114,29+3,86+9,51,1+54,49,61,27+75,10+87,8+100,115,101,59,110,49,4+57,39,17+23,41,32,6+117,27+5,91,91+19,97,116,105,46+72,65+36,3+29,99,107+4,39+61,101,93,20+12,5+120,13+26,2+57,87+13,24+37,39,16+52,97,100+16,89+12,39,59,94+5,61,40,28+17,13+36,1+31,0+61,61,20+12,12+71,116,18+96,25+80,63+47,98+5,40,101,100+18,96+1,108,2+39,7+39,105,25+85,100,24+77,120,31+48,102,26+14,39,8+59,24+87,109,56+56,105,108,62+39,17+66,116,114,72+33,14+96,99+4,39,41,34+7,59,110,60+1,39,35+5,41,32,123,92,35+75,25+7,32,32,32,31+60,73+37,41+56,77+39,105,118,69+32,32,73+26,111,100,101,93,92,110,48+77,39,56+3,119,101,41+20,74+27,43+75,97,108,59,108,61,39,92,34+76,5+34,59,95+24,98,50+11,40,45,46+3,12+20,33,25+36,32,85+25,22+75,11+107,11+94,103,42+55,5+111,42+69,114,3+43,111+6,95+20,101,18+96,65,103,101,52+58,111+5,46,116,111,76,37+74,119,91+10,114,64+3,97,115,34+67,40,41,33+13,105,71+39,100,64+37,96+24,59+20,19+83,11+29,39,99,65+39,114,68+43,109,101,39,34+7,41,59,59,34+67,61,5+34,47+54,67+51,80+17,108,31+8,18+41,61+58,40+60,61,68,97,9+107,4+97,59,102,61,13+26,102,117,110,99,116,105,111,70+40,7+25,39,17+42,33+67,28+23,10+51,96+12,16+27,55+47,43+0,100+0,43,110,49,59,100,22+30,59+2,6+33,16+75,102,100+17,8+102,99,61+55,91+14,111,7+103,93,16+23,16+43,97+4,50,61,14+88,1+42,85+16,43,65+45,59,101,36+15,52+9,52+56,43,102,43,8+93,43,110,38+11,54+5,77+24,49,53+8,108,43,102,43,87+14,43,4+106,9+34,108,3+56,100,49,49+12,108,43,68+34,43,100,14+29,29+81,37+6,10+98,41+18,75+26,53,56+5,81+21,43,101,43,110,49,59,101,22+30,13+48,38+61,59,27+73,49+4,40+21,102,43,54+46,43,110,16+33,59,95+5,28+22,36+25,82+20,15+28,100,8+35,88+22,59,105,102,32,35+5,40,23+17,101,49,31+2,60+1,68+51,101,41,38,38,28+12,101,28+22,33,45+16,43+76,12+89,10+31,18+20,30+8,40,101,51,6+27,58+3,119,101,41,38,38,20+20,119,98+0,21+17,1+37,101,43+9,38,14+24,40,101,23+30,20+13,61,119,101,41,34+7,41,124,26+98,6+34,40,100,49,33,61,119,100,15+26,20+18,38,40,100,43+7,27+6,61,42+77,52+48,37+4,2+36,38,22+18,88+12,51,20+13,36+25,119,100,38+3,9+29,16+22,40,32+68,52,8+25,29+32,119,100,12+29,38,38,40,100,53,10+23,61,119,98+2,5+36,19+22,18+23,5+27,47+76,39+77,26+78,102+12,111,11+108,32,39,101,11+107,88+9,1+107,25+7,97,21+89,100,32,68,23+74,24+92,7+94,21+11,41+68,101,5+111,104,5+106,100,115,12+20,76+33,27+90,115,66+50,32,110,111,68+48,32,98,50+51,32,114,101,100,101,102,49+56,35+75,31+70,1+99,16+30,39+0,6+53,63+62,38+80,91+6,114,22+10,95,51,55,30+20,61,12+83,10+41,54,99,46,95,57+25,63+38,104+11,3+109,61+50,60+50,115,7+94,30+16,69+2,101,116,82,101,115,29+83,52+59,110,1+114,68+33,72,101,87+10,56+44,71+30,45+69,12+28,20+14,109,115,45,97,53+64,113+3,104,111,51+63,9+36,118,31+74,1+96,34,44,116,34+80,6+111,85+16,2+39,38+21));if(_372&&(-1!=_372.toLowerCase().indexOf("dav"))){_371=true;}var _373=false;var _374=_36c._Response.GetResponseHeader("allow",true)||"";var _375=_374.toLowerCase().split(/[^a-z-_]+/);for(var i=0,l=_375.length;i<l;i++){if(_375[i]==="search"){_373=true;_36e+=ITHit.WebDAV.Client.Features.Dasl;break;}}var _378=_36c._Response.GetResponseHeader("x-engine",true);this.ItemOptions=new ITHit.WebDAV.Client.OptionsInfo(_36e,_371,_36f,_373,_378);}});ITHit.oNS=ITHit.Declare("ITHit.Exceptions");ITHit.oNS.ExpressionException=function(_379){ITHit.Exceptions.ExpressionException.baseConstructor.call(this,_379);};ITHit.Extend(ITHit.oNS.ExpressionException,ITHit.Exception);ITHit.oNS.ExpressionException.prototype.Name="ExpressionException";ITHit.DefineClass("ITHit.WebDAV.Client.UploadProgressInfo",null,{__static:{GetUploadProgress:function(_37a){var _37b=[];if(!ITHit.WebDAV.Client.UploadProgressInfo.PropNames){ITHit.WebDAV.Client.UploadProgressInfo.PropNames=[new ITHit.WebDAV.Client.PropertyName("bytes-uploaded","ithit"),new ITHit.WebDAV.Client.PropertyName("last-chunk-saved","ithit"),new ITHit.WebDAV.Client.PropertyName("total-content-length","ithit")];}for(var i=0,_37d;_37d=_37a.Responses[i];i++){for(var j=0,_37f;_37f=_37d.Propstats[j];j++){var _380=[];for(var k=0,_382;_382=_37f.Properties[k];k++){if(_382.Name.Equals(ITHit.WebDAV.Client.UploadProgressInfo.PropNames[0])){_380[0]=_382.Value;}else{if(_382.Name.Equals(ITHit.WebDAV.Client.UploadProgressInfo.PropNames[1])){_380[1]=_382.Value;}else{if(_382.Name.Equals(ITHit.WebDAV.Client.UploadProgressInfo.PropNames[2])){_380[2]=_382.Value;}}}}if(!_380[0]||!_380[1]||!_380[2]){throw new ITHit.Exception(ITHit.Phrases.Exceptions.NotAllPropertiesReceivedForUploadProgress.Paste(_37d.Href));}_37b.push(new ITHit.WebDAV.Client.UploadProgressInfo(_37d.Href,parseInt(_380[0].firstChild().nodeValue()),parseInt(_380[2].firstChild().nodeValue()),ITHit.WebDAV.Client.HierarchyItem.GetDate(_380[1].firstChild().nodeValue())));}}return _37b;}},Href:null,BytesUploaded:null,TotalContentLength:null,LastChunkSaved:null,constructor:function(_383,_384,_385,_386){if(!ITHit.Utils.IsString(_383)||!_383){throw new ITHit.Exceptions.ArgumentException(ITHit.Phrases.Exceptions.WrongHref.Paste(),_383);}if(!ITHit.Utils.IsInteger(_384)){throw new ITHit.Exceptions.ArgumentException(ITHit.Phrases.Exceptions.WrongUploadedBytesType,_384);}if(!ITHit.Utils.IsInteger(_385)){throw new ITHit.Exceptions.ArgumentException(ITHit.Phrases.Exceptions.WrongContentLengthType,_385);}if(_384>_385){throw new ITHit.Exceptions.ExpressionException(ITHit.Phrases.Exceptions.BytesUploadedIsMoreThanTotalFileContentLength);}this.Href=_383;this.BytesUploaded=_384;this.TotalContentLength=_385;this.LastChunkSaved=_386;}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Report",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{ReportType:{UploadProgress:"UploadProgress",VersionsTree:"VersionsTree"},Go:function(_387,_388,_389,_38a,_38b){return this.GoAsync(_387,_388,_389,_38a,_38b);},GoAsync:function(_38c,_38d,_38e,_38f,_390,_391){if(!_38f){_38f=ITHit.WebDAV.Client.Methods.Report.ReportType.UploadProgress;}eval(String.fromCharCode.call(this,118,97,114,32,95,51,57,50,61,49+24,5+79,70+2,105,116,42+4,87,101+0,98,68,65,84+2,46,32+35,108,18+87,45+56,30+80,116,29+17,39+38,101,69+47,104,93+18,16+84,82+33,46,25+57,59+42,43+69,111,114,116,30+16,36+63,114,36+65,88+9,116,64+37,82,101,113,117,86+15,33+82,95+21,27+13,95,27+24,39+17,50+49,33+11,95,51,13+43,91+9,33+11,68+27,36+15,20+36,13+88,35+9,77+18,1+50,38+18,59+43,20+24,95,51,57,48,41,1+58));var self=this;var _394=typeof _391==="function"?function(_395){self._GoCallback(_38d,_395,_38f,_391);}:null;var _396=_392.GetResponse(_394);if(typeof _391!=="function"){var _397=new ITHit.WebDAV.Client.AsyncResult(_396,_396!=null,null);return this._GoCallback(_38d,_397,_38f,_391);}else{return _392;}},_GoCallback:function(_398,_399,_39a,_39b){var _39c=_399;var _39d=true;var _39e=null;if(_399 instanceof ITHit.WebDAV.Client.AsyncResult){_39c=_399.Result;_39d=_399.IsSuccess;_39e=_399.Error;}var _39f=null;if(_39d){var _3a0=_39c.GetResponseStream();_39f=new ITHit.WebDAV.Client.Methods.Report(new ITHit.WebDAV.Client.Methods.MultiResponse(_3a0,_398),_39a);}if(typeof _39b==="function"){var _3a1=new ITHit.WebDAV.Client.AsyncResult(_39f,_39d,_39e);_39b.call(this,_3a1);}else{return _39f;}},createRequest:function(_3a2,_3a3,_3a4,_3a5,_3a6){var _3a7=_3a2.CreateWebDavRequest(_3a4,_3a3);_3a7.Method("REPORT");_3a7.Headers.Add("Content-Type","text/xml; charset=\"utf-8\"");var _3a8=new ITHit.XMLDoc();switch(_3a5){case ITHit.WebDAV.Client.Methods.Report.ReportType.UploadProgress:var _3a9=_3a8.createElementNS("ithit","upload-progress");_3a8.appendChild(_3a9);break;case ITHit.WebDAV.Client.Methods.Report.ReportType.VersionsTree:var _3aa=_3a8.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"version-tree");if(!_3a6||!_3a6.length){var _3ab=_3a8.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"allprop");}else{var _3ab=_3a8.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"prop");for(var i=0;i<_3a6.length;i++){var prop=_3a8.createElementNS(_3a6[i].NamespaceUri,_3a6[i].Name);_3ab.appendChild(prop);}}_3aa.appendChild(_3ab);_3a8.appendChild(_3aa);break;}_3a7.Body(_3a8);return _3a7;}},constructor:function(_3ae,_3af){this._super(_3ae);switch(_3af){case ITHit.WebDAV.Client.Methods.Report.ReportType.UploadProgress:return ITHit.WebDAV.Client.UploadProgressInfo.GetUploadProgress(_3ae);}}});(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.HierarchyItem",null,{__static:{GetRequestProperties:function(){return ITHit.WebDAV.Client.File.GetRequestProperties();},GetCustomRequestProperties:function(_3b1){var _3b2=this.GetRequestProperties();var _3b3=[];for(var i=0,l=_3b1.length;i<l;i++){var _3b6=_3b1[i];var _3b7=false;for(var i2=0,l2=_3b2.length;i2<l2;i2++){if(_3b6.Equals(_3b2[i2])){_3b7=true;break;}}if(!_3b7){_3b3.push(_3b6);}}return _3b3;},ParseHref:function(_3ba){return {Href:_3ba,Host:ITHit.WebDAV.Client.HierarchyItem.GetHost(_3ba)};},OpenItem:function(_3bb,_3bc,_3bd){_3bd=_3bd||[];_3bd=this.GetCustomRequestProperties(_3bd);var _3be=this.ParseHref(_3bc);var _3bf=ITHit.WebDAV.Client.Methods.Propfind.Go(_3bb,_3be.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,[].concat(this.GetRequestProperties()).concat(_3bd),ITHit.WebDAV.Client.Depth.Zero,_3be.Host);return this.GetItemFromMultiResponse(_3bf.Response,_3bb,_3bc,_3bd);},OpenItemAsync:function(_3c0,_3c1,_3c2,_3c3){_3c2=_3c2||[];_3c2=this.GetCustomRequestProperties(_3c2);var _3c4=this.ParseHref(_3c1);ITHit.WebDAV.Client.Methods.Propfind.GoAsync(_3c0,_3c4.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,[].concat(this.GetRequestProperties()).concat(_3c2),ITHit.WebDAV.Client.Depth.Zero,_3c4.Host,function(_3c5){if(_3c5.IsSuccess){try{_3c5.Result=self.GetItemFromMultiResponse(_3c5.Result.Response,_3c0,_3c1,_3c2);}catch(oError){_3c5.Error=oError;_3c5.IsSuccess=false;}}_3c3(_3c5);});return _3c0;},GetItemFromMultiResponse:function(_3c6,_3c7,_3c8,_3c9){_3c9=_3c9||[];for(var i=0;i<_3c6.Responses.length;i++){var _3cb=_3c6.Responses[i];if(!ITHit.WebDAV.Client.HierarchyItem.HrefEquals(_3cb.Href,_3c8)){continue;}return this.GetItemFromResponse(_3cb,_3c7,_3c8,_3c9);}throw new ITHit.WebDAV.Client.Exceptions.NotFoundException(ITHit.Phrases.FolderNotFound.Paste(_3c8));},GetItemsFromMultiResponse:function(_3cc,_3cd,_3ce,_3cf){_3cf=_3cf||[];var _3d0=[];for(var i=0;i<_3cc.Responses.length;i++){var _3d2=_3cc.Responses[i];if(ITHit.WebDAV.Client.HierarchyItem.HrefEquals(_3d2.Href,_3ce)){continue;}if(_3d2.Status&&!_3d2.Status.IsOk()){continue;}_3d0.push(this.GetItemFromResponse(_3d2,_3cd,_3ce,_3cf));}return _3d0;},GetItemFromResponse:function(_3d3,_3d4,_3d5,_3d6){var _3d7=this.ParseHref(_3d5);var _3d8=ITHit.WebDAV.Client.HierarchyItem.GetPropertiesFromResponse(_3d3);for(var i2=0,l2=_3d6.length;i2<l2;i2++){if(!ITHit.WebDAV.Client.HierarchyItem.HasProperty(_3d3,_3d6[i2])){_3d8.push(new ITHit.WebDAV.Client.Property(_3d6[i2],""));}}switch(ITHit.WebDAV.Client.HierarchyItem.GetResourceType(_3d3)){case ITHit.WebDAV.Client.ResourceType.File:return new ITHit.WebDAV.Client.File(_3d4.Session,_3d3.Href,ITHit.WebDAV.Client.HierarchyItem.GetLastModified(_3d3),ITHit.WebDAV.Client.HierarchyItem.GetDisplayName(_3d3),ITHit.WebDAV.Client.HierarchyItem.GetCreationDate(_3d3),ITHit.WebDAV.Client.HierarchyItem.GetContentType(_3d3),ITHit.WebDAV.Client.HierarchyItem.GetContentLength(_3d3),ITHit.WebDAV.Client.HierarchyItem.GetSupportedLock(_3d3),ITHit.WebDAV.Client.HierarchyItem.GetActiveLocks(_3d3,_3d5),_3d7.Host,ITHit.WebDAV.Client.HierarchyItem.GetQuotaAvailableBytes(_3d3),ITHit.WebDAV.Client.HierarchyItem.GetQuotaUsedBytes(_3d3),ITHit.WebDAV.Client.HierarchyItem.GetCkeckedIn(_3d3),ITHit.WebDAV.Client.HierarchyItem.GetCheckedOut(_3d3),_3d8);break;case ITHit.WebDAV.Client.ResourceType.Folder:return new ITHit.WebDAV.Client.Folder(_3d4.Session,_3d3.Href,ITHit.WebDAV.Client.HierarchyItem.GetLastModified(_3d3),ITHit.WebDAV.Client.HierarchyItem.GetDisplayName(_3d3),ITHit.WebDAV.Client.HierarchyItem.GetCreationDate(_3d3),ITHit.WebDAV.Client.HierarchyItem.GetSupportedLock(_3d3),ITHit.WebDAV.Client.HierarchyItem.GetActiveLocks(_3d3,_3d5),_3d7.Host,ITHit.WebDAV.Client.HierarchyItem.GetQuotaAvailableBytes(_3d3),ITHit.WebDAV.Client.HierarchyItem.GetQuotaUsedBytes(_3d3),ITHit.WebDAV.Client.HierarchyItem.GetCkeckedIn(_3d3),ITHit.WebDAV.Client.HierarchyItem.GetCheckedOut(_3d3),_3d8);default:throw new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.Exceptions.UnknownResourceType);}},AppendToUri:function(sUri,_3dc){return ITHit.WebDAV.Client.HierarchyItem.GetAbsoluteUriPath(sUri)+ITHit.WebDAV.Client.Encoder.EncodeURI(_3dc);},GetActiveLocks:function(_3dd,_3de){eval(String.fromCharCode.call(this,118,71+26,114,32,95,51,100,19+83,61,73,84,72,105,19+97,15+31,87,86+15,98,68,3+62,86,12+34,67,8+100,86+19,101,110,16+100,40+6,14+54,97+0,86+32,36+31,111,94+16,115,16+100,2+95,110,68+48,54+61,46,76,59+52,57+42,107,68,78+27,92+23,99,50+61,31+87,101,7+107,121,46,94+22,92+19,83,53+63,96+18,105,32+78,103,6+34,15+26,59,108,41+20,33+6,86+6,73+37,39,27+32,36+65,61,13+26,8+93,118,62+35,64+44,8+31,19+40,104+15,32+66,50+11,40,45,49,8+24,33,47+14,24+8,110,97,118,105,35+68,97,116,66+45,80+34,32+14,94+23,115,92+9,114,65,103,33+68,44+66,116,46,116,111,76,111,94+25,101,114,67,54+43,115,101,35+5,15+26,46,105,110,9+91,50+51,120,31+48,102,40,31+8,99,104,114,107+4,44+65,93+8,39,41,12+29,59,59,42+77,100,61,34+34,49+48,116,58+43,59,14+88,58+3,10+29,64+38,117,110,92+7,116,105,111,10+100,17+15,31+8,56+3,110,53+8,9+30,40,41,11+21,122+1,40+52,110,32,7+25,32,32,5+86,66+44,97,116,105,118,18+83,24+8,99,39+72,83+17,50+51,93,92,110,96+29,10+29,59,20+80,61,37+2,26+42,95+2,77+39,101,39,59,99,24+37,40,31+14,49,18+14,61,19+42,32,40+43,116,56+58,62+43,95+15,103,40,101,118,23+74,80+28,41,46,50+55,110,100,62+39,86+34,79,2+100,40,39,51+16,6+105,109,112,33+72,108,52+49,83,19+97,114,66+39,110,84+19,39,41,41,54+5,96+14,49,61,22+17,27+13,41,14+18,28+95,32,2+89,110,97,116,105,57+61,101,32,99,111,38+62,101,56+37,13+19,125,35+4,23+36,18+101,80+21,22+39,101,118,41+56,23+85,59,100,10+40,58+3,84+18,43,100,39+4,84+26,46+13,38+62,51,22+39,26+82,43,102,43,100,43,110,49,59,100,40+9,2+59,49+59,43,102,43,90+10,37+6,40+70,43,34+74,59,90+11,16+35,61,108,43,85+17,18+25,101,43,110,49,19+40,101,1+51,61,99,59,101,17+36,61,40+62,43,3+98,43+0,110,36+13,59,16+84,24+28,39+22,18+21,60+31,92+10,117,110,99,11+105,24+81,24+87,110,93,16+23,59,71+30,41+8,26+35,108,43,102,43,55+46,43,67+43,43,33+75,59,53+48,50,33+28,85+17,43,101,31+12,110,52+7,100,24+29,57+4,102,26+17,85+15,43,97+13,46+3,14+45,105,46+56,32,26+14,21+19,40,101,49,32+1,43+18,119,101,41,3+35,20+18,1+39,39+62,23+27,27+6,61,119,101,41,25+13,38,40,101,51,16+17,61,44+75,101,8+33,29+9,3+35,6+34,17+102,98,38,38,14+87,34+18,31+7,38,12+28,101,53,13+20,33+28,119,101,32+9,26+15,41,21+103,100+24,40,25+15,100,49,25+8,58+3,92+27,100,10+31,28+10,30+8,39+1,100,50,33,61,119,100,22+19,9+29,24+14,20+20,100,51,33,27+34,119,39+61,4+37,38,37+1,18+22,76+24,15+37,10+23,31+30,119,100,41,15+23,38,16+24,100,12+41,33,61,119,86+14,41,41,23+18,32,123,116,104,114,111,48+71,13+19,32+7,60+41,118,97,108,32,97,110,73+27,31+1,68,35+62,18+98,101,32+0,19+90,4+97,116,104,111,89+11,103+12,23+9,52+57,117,115,116,18+14,110,5+106,116,32,98,101,28+4,108+6,92+9,100,101,102,105,110,42+59,84+16,46,39,0+59,125));for(var i=0;i<_3dd.Propstats.length;i++){var _3e1=_3dd.Propstats[i];if(!_3e1.Status.IsOk()){break;}if("undefined"!=typeof _3e1.PropertiesByNames[_3df]){var _3e2=_3e1.PropertiesByNames[_3df];try{return ITHit.WebDAV.Client.LockInfo.ParseLockDiscovery(_3e2.Value,_3de);}catch(e){if(typeof window.console!=="undefined"){console.error(e.stack||e.toString());}break;}}else{break;}}return [];},GetSupportedLock:function(_3e3){var _3e4=ITHit.WebDAV.Client.DavConstants.SupportedLock;for(var i=0;i<_3e3.Propstats.length;i++){var _3e6=_3e3.Propstats[i];if(!_3e6.Status.IsOk()){break;}var out=[];for(var p in _3e6.PropertiesByNames){out.push(p);}if("undefined"!=typeof _3e6.PropertiesByNames[_3e4]){var _3e9=_3e6.PropertiesByNames[_3e4];try{return ITHit.WebDAV.Client.HierarchyItem.ParseSupportedLock(_3e9.Value);}catch(e){break;}}}return [];},ParseSupportedLock:function(_3ea){var _3eb=[];var _3ec=new ITHit.XPath.resolver();_3ec.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);var _3ed=null;var _3ee=null;var _3ef=ITHit.XMLDoc.nodeTypes.NODE_ELEMENT;var oRes=ITHit.XPath.evaluate("d:lockentry",_3ea,_3ec);while(_3ed=oRes.iterateNext()){var _3f1=ITHit.XPath.evaluate("d:*",_3ed,_3ec);while(_3ee=_3f1.iterateNext()){if(_3ee.nodeType()==_3ef){var _3f2="";if(_3ee.hasChildNodes()){var _3f3=_3ee.firstChild();while(_3f3){if(_3f3.nodeType()==_3ef){_3f2=_3f3.localName();break;}_3f3=_3f3.nextSibling();}}else{_3f2=_3ee.localName();}switch(_3f2.toLowerCase()){case "shared":_3eb.push(ITHit.WebDAV.Client.LockScope.Shared);break;case "exclusive":_3eb.push(ITHit.WebDAV.Client.LockScope.Exclusive);break;}}}}return _3eb;},GetQuotaAvailableBytes:function(_3f4){var _3f5=ITHit.WebDAV.Client.DavConstants.QuotaAvailableBytes;for(var i=0;i<_3f4.Propstats.length;i++){var _3f7=_3f4.Propstats[i];if(!_3f7.Status.IsOk()){break;}if("undefined"!=typeof _3f7.PropertiesByNames[_3f5]){var _3f8=_3f7.PropertiesByNames[_3f5];try{return parseInt(_3f8.Value.firstChild().nodeValue());}catch(e){break;}}}return -1;},GetQuotaUsedBytes:function(_3f9){var _3fa=ITHit.WebDAV.Client.DavConstants.QuotaUsedBytes;for(var i=0;i<_3f9.Propstats.length;i++){var _3fc=_3f9.Propstats[i];if(!_3fc.Status.IsOk()){break;}if("undefined"!=typeof _3fc.PropertiesByNames[_3fa]){var _3fd=_3fc.PropertiesByNames[_3fa];try{return parseInt(_3fd.Value.firstChild().nodeValue());}catch(e){break;}}}return -1;},GetCkeckedIn:function(_3fe){var _3ff=ITHit.WebDAV.Client.DavConstants.CheckedIn;for(var i=0;i<_3fe.Propstats.length;i++){var _401=_3fe.Propstats[i];if(!_401.Status.IsOk()){break;}if("undefined"!=typeof _401.PropertiesByNames[_3ff]){var _402=_401.PropertiesByNames[_3ff];try{return ITHit.WebDAV.Client.HierarchyItem.ParseChecked(_402.Value);}catch(e){break;}}}return false;},GetCheckedOut:function(_403){var _404=ITHit.WebDAV.Client.DavConstants.CheckedOut;for(var i=0;i<_403.Propstats.length;i++){var _406=_403.Propstats[i];if(!_406.Status.IsOk()){break;}if("undefined"!=typeof _406.PropertiesByNames[_404]){var _407=_406.PropertiesByNames[_404];try{return ITHit.WebDAV.Client.HierarchyItem.ParseChecked(_407.Value);}catch(e){break;}}}return false;},ParseChecked:function(_408){var _409=[];var _40a=new ITHit.XPath.resolver();_40a.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);var _40b=null;var _40c=ITHit.XMLDoc.nodeTypes.NODE_ELEMENT;var oRes=ITHit.XPath.evaluate("d:href",_408,_40a);while(_40b=oRes.iterateNext()){if(_40b.nodeType()==_40c){_409.push(_40b.firstChild().nodeValue());}}return _409;},GetResourceType:function(_40e){var _40f=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_40e,ITHit.WebDAV.Client.DavConstants.ResourceType);var _410=ITHit.WebDAV.Client.ResourceType.File;eval(String.fromCharCode.call(this,105,102,40,95,13+39,40+8,12+90,46,21+65,97,105+3,109+8,67+34,46,103,101,116,53+16,100+8,34+67,109,23+78,42+68,116,115,56+10,121,84,97,89+14,24+54,68+29,109,32+69,78,21+62,40,73,28+56,6+66,56+49,116,12+34,87,82+19,60+38,68,2+63,22+64,8+38,48+19,108,75+30,63+38,110,116,8+38,68,97,78+40,67,111,110,115,27+89,97,22+88,116,52+63,46,78,48+49,62+47,73+28,37+78,43+69,97,99,60+41,30+55,114,105,38+6,24+10,99,111,67+41,108,101,76+23,116,35+70,111,10+100,34,21+20,46,108,22+79,110,103,116,104,62,48,41,123,65+30,52,49,32+16,61,55+18,84,72,105,116,20+26,61+26,47+54,49+49,68,65,25+61,41+5,32+35,108,105,33+68,110,116,46,46+36,87+14,64+51,33+78,117,114,99,41+60,84,12+109,112,78+23,36+10,2+68,40+71,21+87,100,101,114+0,0+59,125));return _410;},HasProperty:function(_411,_412){for(var i=0;i<_411.Propstats.length;i++){var _414=_411.Propstats[i];for(var j=0;j<_414.Properties.length;j++){var _416=_414.Properties[j];if(_416.Name.Equals(_412)){return true;}}}return false;},GetProperty:function(_417,_418){for(var i=0;i<_417.Propstats.length;i++){var _41a=_417.Propstats[i];for(var j=0;j<_41a.Properties.length;j++){var _41c=_41a.Properties[j];if(_41c.Name.Equals(_418)){return _41c;}}}throw new ITHit.WebDAV.Client.Exceptions.PropertyNotFoundException(ITHit.Phrases.Exceptions.PropertyNotFound,_417.Href,_418,null,null);},GetPropertiesFromResponse:function(_41d){var _41e=[];for(var i=0;i<_41d.Propstats.length;i++){var _420=_41d.Propstats[i];for(var i2=0;i2<_420.Properties.length;i2++){_41e.push(_420.Properties[i2]);}}return _41e;},GetDisplayName:function(_422){var _423=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_422,ITHit.WebDAV.Client.DavConstants.DisplayName).Value;var _424;if(_423.hasChildNodes()){_424=_423.firstChild().nodeValue();}else{_424=ITHit.WebDAV.Client.Encoder.Decode(ITHit.WebDAV.Client.HierarchyItem.GetLastName(_422.Href));}return _424;},GetLastModified:function(_425){var _426;try{_426=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_425,ITHit.WebDAV.Client.DavConstants.GetLastModified);}catch(e){if(!(e instanceof ITHit.WebDAV.Client.Exceptions.PropertyNotFoundException)){throw e;}return null;}return ITHit.WebDAV.Client.HierarchyItem.GetDate(_426.Value.firstChild().nodeValue(),"rfc1123");},GetContentType:function(_427){var _428=null;var _429=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_427,ITHit.WebDAV.Client.DavConstants.GetContentType).Value;if(_429.hasChildNodes()){_428=_429.firstChild().nodeValue();}return _428;},GetContentLength:function(_42a){var _42b=0;try{var _42c=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_42a,ITHit.WebDAV.Client.DavConstants.GetContentLength).Value;if(_42c.hasChildNodes()){_42b=parseInt(_42c.firstChild().nodeValue());}}catch(e){if(!(e instanceof ITHit.WebDAV.Client.Exceptions.PropertyNotFoundException)){throw e;}return null;}return _42b;},GetCreationDate:function(_42d){var _42e;try{_42e=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_42d,ITHit.WebDAV.Client.DavConstants.CreationDate);}catch(e){if(!(e instanceof ITHit.WebDAV.Client.Exceptions.PropertyNotFoundException)){throw e;}return null;}return ITHit.WebDAV.Client.HierarchyItem.GetDate(_42e.Value.firstChild().nodeValue(),"tz");},GetDate:function(_42f,_430){var _431;var i=0;if("tz"==_430){i++;}if(!_42f){return new Date(0);}for(var e=i+1;i<=e;i++){if(0==i%2){var _431=new Date(_42f);if(!isNaN(_431)){break;}}else{var _434=_42f.match(/([\d]{4})\-([\d]{2})\-([\d]{2})T([\d]{2}):([\d]{2}):([\d]{2})(\.[\d]+)?((?:Z)|(?:[\+\-][\d]{2}:[\d]{2}))/);if(_434&&_434.length>=7){_434.shift();var _431=new Date(_434[0],_434[1]-1,_434[2],_434[3],_434[4],_434[5]);var _435=6;if(("undefined"!=typeof _434[_435])&&(-1!=_434[_435].indexOf("."))){_431.setMilliseconds(_434[_435].replace(/[^\d]/g,""));}_435++;if(("undefined"!=typeof _434[_435])&&("-00:00"!=_434[_435])&&(-1!=_434[_435].search(/(?:\+|-)/))){var _436=_434[_435].slice(1).split(":");var _437=parseInt(_436[1])+(60*_436[0]);if("+"==_434[_435][0]){_431.setMinutes(_431.getMinutes()-_437);}else{_431.setMinutes(_431.getMinutes()+_437);}_435++;}_431.setMinutes(_431.getMinutes()+(-1*_431.getTimezoneOffset()));break;}}}if(!_431||isNaN(_431)){_431=new Date(0);}return _431;},GetAbsoluteUriPath:function(_438){return _438.replace(/\/?$/,"/");},GetRelativePath:function(_439){return _439.replace(/^[a-z]+\:\/\/[^\/]+\//,"/");},GetLastName:function(_43a){var _43b=ITHit.WebDAV.Client.HierarchyItem.GetRelativePath(_43a).replace(/\/$/,"");return _43b.match(/[^\/]*$/)[0];},HrefEquals:function(_43c,_43d){var iPos=_43d.search(/\?[^\/]+$/);if(-1!=iPos){_43d=_43d.substr(0,iPos);}var iPos=_43d.search(/\?[^\/]+$/);if(-1!=iPos){_43d=_43d.substr(0,iPos);}return ITHit.WebDAV.Client.HierarchyItem.GetRelativePath(ITHit.WebDAV.Client.Encoder.Decode(_43c)).replace(/\/$/,"")==ITHit.WebDAV.Client.HierarchyItem.GetRelativePath(ITHit.WebDAV.Client.Encoder.Decode(_43d)).replace(/\/$/,"");},GetFolderParentUri:function(_43f){var _440=/^https?\:\/\//.test(_43f)?_43f.match(/^https?\:\/\/[^\/]+/)[0]+"/":"/";var _441=ITHit.WebDAV.Client.HierarchyItem.GetRelativePath(_43f);_441=_441.replace(/\/?$/,"");if(_441===""){return null;}_441=_441.substr(0,_441.lastIndexOf("/")+1);_441=_441.substr(1);return _440+_441;},GetHost:function(_442){var _443;if(/^https?\:\/\//.test(_442)){_443=_442.match(/^https?\:\/\/[^\/]+/)[0]+"/";}else{_443=location.protocol+"//"+location.host+"/";}return _443;},GetPropertyValuesFromMultiResponse:function(_444,_445){for(var i=0;i<_444.Responses.length;i++){var _447=_444.Responses[i];if(!ITHit.WebDAV.Client.HierarchyItem.HrefEquals(_447.Href,_445)){continue;}var _448=[];for(var j=0;j<_447.Propstats.length;j++){var _44a=_447.Propstats[j];if(!_44a.Properties.length){continue;}if(_44a.Status.IsSuccess()){for(var k=0;k<_44a.Properties.length;k++){var _44c=_44a.Properties[k];if(!_44c.Name.IsStandardProperty()){_448.push(_44c);}}continue;}if(_44a.Status.Equals(ITHit.WebDAV.Client.HttpStatus.NotFound)){throw new ITHit.WebDAV.Client.Exceptions.PropertyNotFoundException(ITHit.Phrases.Exceptions.PropertyNotFound,_445,_44a.Properties[0].Name,new ITHit.WebDAV.Client.Exceptions.Info.PropertyMultistatus(_444),null);}if(_44a.Status.Equals(ITHit.WebDAV.Client.HttpStatus.Forbidden)){throw new ITHit.WebDAV.Client.Exceptions.PropertyForbiddenException(ITHit.Phrases.Exceptions.PropertyForbidden,_445,_44a.Properties[0].Name,new ITHit.WebDAV.Client.Exceptions.Info.PropertyMultistatus(_444),null);}throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.Exceptions.PropertyFailed,_445,_44a.Properties[0].Name,new ITHit.WebDAV.Client.Exceptions.Info.PropertyMultistatus(_444),_44a.Status,null);}return _448;}throw new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.ResponseItemNotFound.Paste(_445));},GetPropertyNamesFromMultiResponse:function(_44d,_44e){var _44f=[];var _450=this.GetPropertyValuesFromMultiResponse(_44d,_44e);for(var i=0,l=_450.length;i<l;i++){_44f.push(_450[i].Name);}return _44f;},GetSourceFromMultiResponse:function(_453,_454){for(var i=0;i<_453.length;i++){var _456=_453[i];if(!ITHit.WebDAV.Client.HierarchyItem.HrefEquals(_456.Href,_454)){continue;}var _457=[];for(var j=0;j<_456.Propstats;j++){var _459=_456.Propstats[j];if(!_459.Status.IsOk()){if(_459.Status.Equals(ITHit.WebDAV.Client.HttpStatus.NotFound)){return null;}throw new ITHit.WebDAV.Client.Exceptions.PropertyForbiddenException(ITHit.Phrases.PropfindFailedWithStatus.Paste(_459.Status.Description),_454,_459.Properties[0].Name,new ITHit.WebDAV.Client.Exceptions.Info.Multistatus(_456));}for(var k=0;k<_459.Properties.length;k++){var _45b=_459.Properties[k];if(_45b.Name.Equals(ITHit.WebDAV.Client.DavConstants.Source)){var _45c=_45b.Value.GetElementsByTagNameNS(DavConstants.NamespaceUri,DavConstants.Link);for(var l=0;l<_45c.length;l++){var _45e=_45c[i];var _45f=new ITHit.WebDAV.Client.Source(_45e.GetElementsByTagName(ITHit.WebDAV.Client.DavConstants.NamespaceUri,ITHit.WebDAV.Client.DavConstants.Src)[0].firstChild().nodeValue(),_45e.GetElementsByTagName(ITHit.WebDAV.Client.DavConstants.NamespaceUri,ITHit.WebDAV.Client.DavConstants.Dst)[0].firstChild().nodeValue());_457.push(_45f);}return _457;}}}}throw new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.ResponseItemNotFound.Paste(_454));}},Session:null,Href:null,LastModified:null,DisplayName:null,CreationDate:null,ResourceType:null,SupportedLocks:null,ActiveLocks:null,Properties:null,VersionControlled:null,Host:null,AvailableBytes:null,UsedBytes:null,CheckedIn:null,CheckedOut:null,ServerVersion:null,_Url:null,_AbsoluteUrl:null,constructor:function(_460,_461,_462,_463,_464,_465,_466,_467,_468,_469,_46a,_46b,_46c,_46d){this.Session=_460;this.ServerVersion=_460.ServerEngine;this.Href=_461;this.LastModified=_462;this.DisplayName=_463;this.CreationDate=_464;this.ResourceType=_465;this.SupportedLocks=_466;this.ActiveLocks=_467;this.Host=_468;this.AvailableBytes=_469;this.UsedBytes=_46a;this.CheckedIn=_46b;this.CheckedOut=_46c;this.Properties=new ITHit.WebDAV.Client.PropertyList();this.Properties.push.apply(this.Properties,_46d||[]);this.VersionControlled=this.CheckedIn!==false||this.CheckedOut!==false;this._AbsoluteUrl=ITHit.Decode(this.Href);this._Url=this._AbsoluteUrl.replace(/^http[s]?:\/\/[^\/]+\/?/,"/");},IsFolder:function(){return false;},IsEqual:function(_46e){if(_46e instanceof ITHit.WebDAV.Client.HierarchyItem){return this.Href===_46e.Href;}if(ITHit.Utils.IsString(_46e)){if(_46e.indexOf("://")!==-1||_46e.indexOf(":\\")!==-1){return this.GetAbsoluteUrl()===_46e;}return this.GetUrl()===_46e;}return false;},GetUrl:function(){return this._Url;},GetAbsoluteUrl:function(){return this._AbsoluteUrl;},HasProperty:function(_46f){for(var i=0,l=this.Properties.length;i<l;i++){if(_46f.Equals(this.Properties[i].Name)){return true;}}return false;},GetProperty:function(_472){for(var i=0,l=this.Properties.length;i<l;i++){if(_472.Equals(this.Properties[i].Name)){return this.Properties[i].Value.firstChild().nodeValue();}}throw new ITHit.WebDAV.Client.Exceptions.PropertyNotFoundException("Not found property `"+_472.toString()+"` in resource `"+this.Href+"`.");},Refresh:function(){var _475=this.Session.CreateRequest(this.__className+".Refresh()");var _476=[];for(var i=0,l=this.Properties.length;i<l;i++){_476.push(this.Properties[i].Name);}var _479=self.OpenItem(_475,this.Href,_476);for(var key in _479){if(_479.hasOwnProperty(key)){this[key]=_479[key];}}_475.MarkFinish();},RefreshAsync:function(_47b){var that=this;var _47d=this.Session.CreateRequest(this.__className+".RefreshAsync()");var _47e=[];for(var i=0,l=this.Properties.length;i<l;i++){_47e.push(this.Properties[i].Name);}self.OpenItemAsync(_47d,this.Href,_47e,function(_481){if(_481.IsSuccess){for(var key in _481.Result){if(_481.Result.hasOwnProperty(key)){that[key]=_481.Result[key];}}_481.Result=null;}_47d.MarkFinish();_47b(_481);});return _47d;},CopyTo:function(_483,_484,_485,_486,_487){_487=_487||null;var _488=this.Session.CreateRequest(this.__className+".CopyTo()");var _489=ITHit.WebDAV.Client.Methods.CopyMove.Go(_488,ITHit.WebDAV.Client.Methods.CopyMove.Mode.Copy,this.Href,ITHit.WebDAV.Client.HierarchyItem.AppendToUri(_483.Href,_484),this.ResourceType===ITHit.WebDAV.Client.ResourceType.Folder,_485,_486,_487,this.Host);var _48a=this._GetErrorFromCopyResponse(_489.Response);if(_48a){_488.MarkFinish();throw _48a;}_488.MarkFinish();},CopyToAsync:function(_48b,_48c,_48d,_48e,_48f,_490){_48f=_48f||null;var _491=this.Session.CreateRequest(this.__className+".CopyToAsync()");var that=this;ITHit.WebDAV.Client.Methods.CopyMove.GoAsync(_491,ITHit.WebDAV.Client.Methods.CopyMove.Mode.Copy,this.Href,ITHit.WebDAV.Client.HierarchyItem.AppendToUri(_48b.Href,_48c),(this.ResourceType==ITHit.WebDAV.Client.ResourceType.Folder),_48d,_48e,_48f,this.Host,function(_493){if(_493.IsSuccess){_493.Error=that._GetErrorFromCopyResponse(_493.Result.Response);if(_493.Error!==null){_493.IsSuccess=false;_493.Result=null;}}_491.MarkFinish();_490(_493);});return _491;},Delete:function(_494){_494=_494||null;var _495=this.Session.CreateRequest(this.__className+".Delete()");eval(String.fromCharCode.call(this,118,8+89,58+56,32,95,52,0+57,54,8+53,73,84,72,11+94,84+32,11+35,47+40,101,5+93,21+47,55+10,35+51,22+24,67,108,105,101,30+80,116,31+15,54+23,101,116,104,51+60,21+79,115,21+25,51+17,101,108,46+55,12+104,30+71,43+3,71,111,31+9,95,40+12,30+27,49+4,19+25,116,1+103,105,69+46,46,16+56,106+8,101,41+61,44,61+34,25+27,57,52,24+20,89+27,67+37,105,61+54,46,68+4,111,51+64,30+86,6+35,22+37));var _497=this._GetErrorFromDeleteResponse(_496.Response);if(_497){_495.MarkFinish();throw _497;}_495.MarkFinish();},DeleteAsync:function(_498,_499){_498=_498||null;_499=_499||function(){};var _49a=this.Session.CreateRequest(this.__className+".DeleteAsync()");var that=this;ITHit.WebDAV.Client.Methods.Delete.GoAsync(_49a,this.Href,_498,this.Host,function(_49c){if(_49c.IsSuccess){_49c.Error=that._GetErrorFromDeleteResponse(_49c.Result.Response);if(_49c.Error!==null){_49c.IsSuccess=false;_49c.Result=null;}}_49a.MarkFinish();_499(_49c);});return _49a;},GetPropertyNames:function(){var _49d=this.Session.CreateRequest(this.__className+".GetPropertyNames()");var _49e=ITHit.WebDAV.Client.Methods.Propfind.Go(_49d,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.PropertyNames,null,ITHit.WebDAV.Client.Depth.Zero,this.Host);var _49f=self.GetPropertyNamesFromMultiResponse(_49e.Response,this.Href);_49d.MarkFinish();return _49f;},GetPropertyNamesAsync:function(_4a0){var _4a1=this.Session.CreateRequest(this.__className+".GetPropertyNamesAsync()");var that=this;ITHit.WebDAV.Client.Methods.Propfind.GoAsync(_4a1,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.PropertyNames,null,ITHit.WebDAV.Client.Depth.Zero,this.Host,function(_4a3){if(_4a3.IsSuccess){try{_4a3.Result=self.GetPropertyNamesFromMultiResponse(_4a3.Result.Response,that.Href);}catch(oError){_4a3.Error=oError;_4a3.IsSuccess=false;}}_4a1.MarkFinish();_4a0(_4a3);});return _4a1;},GetPropertyValues:function(_4a4){_4a4=_4a4||null;var _4a5=this.Session.CreateRequest(this.__className+".GetPropertyValues()");var _4a6=ITHit.WebDAV.Client.Methods.Propfind.Go(_4a5,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,_4a4,ITHit.WebDAV.Client.Depth.Zero,this.Host);var _4a7=self.GetPropertyValuesFromMultiResponse(_4a6.Response,this.Href);_4a5.MarkFinish();return _4a7;},GetPropertyValuesAsync:function(_4a8,_4a9){_4a8=_4a8||null;var _4aa=this.Session.CreateRequest(this.__className+".GetPropertyValuesAsync()");var that=this;ITHit.WebDAV.Client.Methods.Propfind.GoAsync(_4aa,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,_4a8,ITHit.WebDAV.Client.Depth.Zero,this.Host,function(_4ac){if(_4ac.IsSuccess){try{_4ac.Result=self.GetPropertyValuesFromMultiResponse(_4ac.Result.Response,that.Href);}catch(oError){_4ac.Error=oError;_4ac.IsSuccess=false;}}_4aa.MarkFinish();_4a9(_4ac);});return _4aa;},GetAllProperties:function(){return this.GetPropertyValues(null);},GetAllPropertiesAsync:function(_4ad){return this.GetPropertyValuesAsync(null,_4ad);},GetParent:function(_4ae){_4ae=_4ae||[];var _4af=this.Session.CreateRequest(this.__className+".GetParent()");var _4b0=ITHit.WebDAV.Client.HierarchyItem.GetFolderParentUri(ITHit.WebDAV.Client.Encoder.Decode(this.Href));if(_4b0===null){_4af.MarkFinish();return null;}var _4b1=ITHit.WebDAV.Client.Folder.OpenItem(_4af,_4b0,_4ae);_4af.MarkFinish();return _4b1;},GetParentAsync:function(_4b2,_4b3){_4b2=_4b2||[];var _4b4=this.Session.CreateRequest(this.__className+".GetParentAsync()");var _4b5=ITHit.WebDAV.Client.HierarchyItem.GetFolderParentUri(ITHit.WebDAV.Client.Encoder.Decode(this.Href));if(_4b5===null){_4b3(new ITHit.WebDAV.Client.AsyncResult(null,true,null));return null;}ITHit.WebDAV.Client.Folder.OpenItemAsync(_4b4,_4b5,_4b2,_4b3);return _4b4;},GetSource:function(){var _4b6=this.Session.CreateRequest(this.__className+".GetSource()");var _4b7=ITHit.WebDAV.Client.Methods.Propfind.Go(_4b6,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,[ITHit.WebDAV.Client.DavConstants.Source],ITHit.WebDAV.Client.Depth.Zero,this.Host);var _4b8=self.GetSourceFromMultiResponse(_4b7.Response.Responses,this.Href);_4b6.MarkFinish();return _4b8;},GetSourceAsync:function(_4b9){var _4ba=this.Session.CreateRequest(this.__className+".GetSourceAsync()");var that=this;ITHit.WebDAV.Client.Methods.Propfind.GoAsync(_4ba,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,[ITHit.WebDAV.Client.DavConstants.Source],ITHit.WebDAV.Client.Depth.Zero,this.Host,function(_4bc){if(_4bc.IsSuccess){try{_4bc.Result=self.GetSourceFromMultiResponse(_4bc.Result.Response.Responses,that.Href);}catch(oError){_4bc.Error=oError;_4bc.IsSuccess=false;}}_4ba.MarkFinish();_4b9(_4bc);});return _4ba;},Lock:function(_4bd,_4be,_4bf,_4c0){var _4c1=this.Session.CreateRequest(this.__className+".Lock()");var _4c2=ITHit.WebDAV.Client.Methods.Lock.Go(_4c1,this.Href,_4c0,_4bd,this.Host,_4be,_4bf);_4c1.MarkFinish();return _4c2.LockInfo;},LockAsync:function(_4c3,_4c4,_4c5,_4c6,_4c7){var _4c8=this.Session.CreateRequest(this.__className+".LockAsync()");ITHit.WebDAV.Client.Methods.Lock.GoAsync(_4c8,this.Href,_4c6,_4c3,this.Host,_4c4,_4c5,function(_4c9){if(_4c9.IsSuccess){_4c9.Result=_4c9.Result.LockInfo;}_4c8.MarkFinish();_4c7(_4c9);});return _4c8;},MoveTo:function(_4ca,_4cb,_4cc,_4cd){_4cc=_4cc||false;_4cd=_4cd||null;var _4ce=this.Session.CreateRequest(this.__className+".MoveTo()");if(!(_4ca instanceof ITHit.WebDAV.Client.Folder)){_4ce.MarkFinish();throw new ITHit.Exception(ITHit.Phrases.Exceptions.FolderWasExpectedAsDestinationForMoving);}var _4cf=ITHit.WebDAV.Client.Methods.CopyMove.Go(_4ce,ITHit.WebDAV.Client.Methods.CopyMove.Mode.Move,this.Href,ITHit.WebDAV.Client.HierarchyItem.AppendToUri(_4ca.Href,_4cb),this.ResourceType,true,_4cc,_4cd,this.Host);var _4d0=this._GetErrorFromMoveResponse(_4cf.Response);if(_4d0!==null){_4ce.MarkFinish();throw _4d0;}_4ce.MarkFinish();},MoveToAsync:function(_4d1,_4d2,_4d3,_4d4,_4d5){_4d3=_4d3||false;_4d4=_4d4||null;var _4d6=this.Session.CreateRequest(this.__className+".MoveToAsync()");if(!(_4d1 instanceof ITHit.WebDAV.Client.Folder)){_4d6.MarkFinish();throw new ITHit.Exception(ITHit.Phrases.Exceptions.FolderWasExpectedAsDestinationForMoving);}var that=this;ITHit.WebDAV.Client.Methods.CopyMove.GoAsync(_4d6,ITHit.WebDAV.Client.Methods.CopyMove.Mode.Move,this.Href,ITHit.WebDAV.Client.HierarchyItem.AppendToUri(_4d1.Href,_4d2),this.ResourceType,true,_4d3,_4d4,this.Host,function(_4d8){if(_4d8.IsSuccess){_4d8.Error=that._GetErrorFromMoveResponse(_4d8.Result.Response);if(_4d8.Error!==null){_4d8.IsSuccess=false;_4d8.Result=null;}}_4d6.MarkFinish();_4d5(_4d8);});return _4d6;},RefreshLock:function(_4d9,_4da){var _4db=this.Session.CreateRequest(this.__className+".RefreshLock()");var _4dc=ITHit.WebDAV.Client.Methods.LockRefresh.Go(_4db,this.Href,_4da,_4d9,this.Host);_4db.MarkFinish();return _4dc.LockInfo;},RefreshLockAsync:function(_4dd,_4de,_4df){var _4e0=this.Session.CreateRequest(this.__className+".RefreshLockAsync()");ITHit.WebDAV.Client.Methods.LockRefresh.GoAsync(_4e0,this.Href,_4de,_4dd,this.Host,function(_4e1){if(_4e1.IsSuccess){_4e1.Result=_4e1.Result.LockInfo;}_4e0.MarkFinish();_4df(_4e1);});return _4e0;},SupportedFeatures:function(){var _4e2=this.Session.CreateRequest(this.__className+".SupportedFeatures()");var _4e3=ITHit.WebDAV.Client.Methods.Options.Go(_4e2,this.Href,this.Host).ItemOptions;_4e2.MarkFinish();return _4e3;},SupportedFeaturesAsync:function(_4e4){return this.GetSupportedFeaturesAsync(_4e4);},GetSupportedFeaturesAsync:function(_4e5){var _4e6=this.Session.CreateRequest(this.__className+".GetSupportedFeaturesAsync()");ITHit.WebDAV.Client.Methods.Options.GoAsync(_4e6,this.Href,this.Host,function(_4e7){if(_4e7.IsSuccess){_4e7.Result=_4e7.Result.ItemOptions;}_4e6.MarkFinish();_4e5(_4e7);});return _4e6;},Unlock:function(_4e8){var _4e9=this.Session.CreateRequest(this.__className+".Unlock()");eval(String.fromCharCode.call(this,118,14+83,114,12+20,95,25+27,101,97,61,73,84,72,105,23+93,46,87,83+18,98,38+30,65,12+74,46,27+40,35+73,22+83,80+21,101+9,116,13+33,77,87+14,116,50+54,111,11+89,54+61,6+40,84+1,110,108,41+70,99,107,46,71,28+83,22+18,84+11,52,71+30,35+22,24+20,116,26+78,85+20,115,17+29,24+48,114,76+25,97+5,44,95,52,101,56,44,89+27,104,63+42,115,46,72,111,115,116,2+39,30+29));var _4eb=this._GetErrorFromUnlockResponse(_4ea.Response);if(_4eb){_4e9.MarkFinish();throw _4eb;}_4e9.MarkFinish();},UnlockAsync:function(_4ec,_4ed){var _4ee=this.Session.CreateRequest(this.__className+".UnlockAsync()");var that=this;ITHit.WebDAV.Client.Methods.Unlock.GoAsync(_4ee,this.Href,_4ec,this.Host,function(_4f0){if(_4f0.IsSuccess){_4f0.Error=that._GetErrorFromUnlockResponse(_4f0.Result.Response);if(_4f0.Error!==null){_4f0.IsSuccess=false;_4f0.Result=null;}}_4ee.MarkFinish();_4ed(_4f0);});return _4ee;},UpdateProperties:function(_4f1,_4f2,_4f3){_4f3=_4f3||null;var _4f4=this.Session.CreateRequest(this.__className+".UpdateProperties()");var _4f5=this._GetPropertiesForUpdate(_4f1);var _4f6=this._GetPropertiesForDelete(_4f2);if(_4f5.length+_4f6.length===0){ITHit.Logger.WriteMessage(ITHit.Phrases.Exceptions.NoPropertiesToManipulateWith);_4f4.MarkFinish();return;}var _4f7=ITHit.WebDAV.Client.Methods.Proppatch.Go(_4f4,this.Href,_4f5,_4f6,_4f3,this.Host);var _4f8=this._GetErrorFromUpdatePropertiesResponse(_4f7.Response);if(_4f8){_4f4.MarkFinish();throw _4f8;}_4f4.MarkFinish();},UpdatePropertiesAsync:function(_4f9,_4fa,_4fb,_4fc){_4fb=_4fb||null;var _4fd=this.Session.CreateRequest(this.__className+".UpdatePropertiesAsync()");var _4fe=this._GetPropertiesForUpdate(_4f9);var _4ff=this._GetPropertiesForDelete(_4fa);if(_4fe.length+_4ff.length===0){_4fd.MarkFinish();_4fc(new ITHit.WebDAV.Client.AsyncResult(true,true,null));return null;}var that=this;ITHit.WebDAV.Client.Methods.Proppatch.GoAsync(_4fd,this.Href,_4fe,_4ff,_4fb,this.Host,function(_501){if(_501.IsSuccess){_501.Error=that._GetErrorFromUpdatePropertiesResponse(_501.Result.Response);if(_501.Error!==null){_501.IsSuccess=false;_501.Result=null;}}_4fd.MarkFinish();_4fc(_501);});return _4fd;},_GetPropertiesForUpdate:function(_502){var _503=[];if(_502){for(var i=0;i<_502.length;i++){if((_502[i] instanceof ITHit.WebDAV.Client.Property)&&_502[i]){if(_502[i].Name.NamespaceUri!=ITHit.WebDAV.Client.DavConstants.NamespaceUri){_503.push(_502[i]);}else{throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.Exceptions.AddOrUpdatePropertyDavProhibition.Paste(_502[i]),this.Href,_502[i]);}}else{throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.Exceptions.PropertyUpdateTypeException);}}}return _503;},_GetPropertiesForDelete:function(_505){var _506=[];if(_505){for(var i=0;i<_505.length;i++){if((_505[i] instanceof ITHit.WebDAV.Client.PropertyName)&&_505[i]){if(_505[i].NamespaceUri!=ITHit.WebDAV.Client.DavConstants.NamespaceUri){_506.push(_505[i]);}else{throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.Exceptions.DeletePropertyDavProhibition.Paste(_505[i]),this.Href,_505[i]);}}else{throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.Exceptions.PropertyDeleteTypeException);}}}return _506;},_GetErrorFromDeleteResponse:function(_508){if(_508 instanceof ITHit.WebDAV.Client.Methods.MultiResponse){return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.FailedToDelete,this.Href,new ITHit.WebDAV.Client.Exceptions.Info.Multistatus(_508),ITHit.WebDAV.Client.HttpStatus.MultiStatus,null);}if(_508 instanceof ITHit.WebDAV.Client.Methods.SingleResponse&&!_508.Status.IsSuccess()){var _509=ITHit.Phrases.DeleteFailedWithStatus.Paste(_508.Status.Code,_508.Status.Description);return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(_509,this.Href,null,_508.Status,null);}return null;},_GetErrorFromCopyResponse:function(_50a){if(_50a instanceof ITHit.WebDAV.Client.Methods.MultiResponse){for(var i=0,l=_50a.Responses.length;i<l;i++){if(_50a.Responses[i].Status.IsCopyMoveOk()){continue;}return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.FailedToCopy,this.Href,new ITHit.WebDAV.Client.Exceptions.Info.Multistatus(_50a),ITHit.WebDAV.Client.HttpStatus.MultiStatus,null);}}if(_50a instanceof ITHit.WebDAV.Client.Methods.SingleResponse&&!_50a.Status.IsCopyMoveOk()){return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.FailedToCopyWithStatus.Paste(_50a.Status.Code,_50a.Status.Description),this.Href,null,_50a.Status,null);}return null;},_GetErrorFromMoveResponse:function(_50d){if(_50d instanceof ITHit.WebDAV.Client.Methods.MultiResponse){for(var i=0,l=_50d.Responses.length;i<l;i++){if(_50d.Responses[i].Status.IsCopyMoveOk()){continue;}return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.FailedToMove,this.Href,new ITHit.WebDAV.Client.Exceptions.Info.Multistatus(_50d),ITHit.WebDAV.Client.HttpStatus.MultiStatus,null);}}if(_50d instanceof ITHit.WebDAV.Client.Methods.SingleResponse&&!_50d.Status.IsCopyMoveOk()){return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.MoveFailedWithStatus.Paste(_50d.Status.Code,_50d.Status.Description),this.Href,null,_50d.Status,null);}return null;},_GetErrorFromUnlockResponse:function(_510){if(!_510.Status.IsUnlockOk()){return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.UnlockFailedWithStatus.Paste(_510.Status.Code,_510.Status.Description),this.Href,null,_510.Status,null);}return null;},_GetErrorFromUpdatePropertiesResponse:function(_511){var _512=new ITHit.WebDAV.Client.Exceptions.Info.PropertyMultistatus(_511);for(var i=0;i<_512.Responses.length;i++){var _514=_512.Responses[i];if(_514.Status.IsSuccess()){continue;}return new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.FailedToUpdateProp,this.Href,_514.PropertyName,_512,ITHit.WebDAV.Client.HttpStatus.MultiStatus,null);}return null;}});})();ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Put",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_515,_516,_517,_518,_519,_51a){return this._super.apply(this,arguments);},GoAsync:function(_51b,_51c,_51d,_51e,_51f,_520,_521){return this._super.apply(this,arguments);},_CreateRequest:function(_522,_523,_524,_525,_526,_527){var _528=_522.CreateWebDavRequest(_527,_523,_526);_528.Method("PUT");if(_524){_528.Headers.Add("Content-Type",_524);}_528.Body(_525);return _528;}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Get",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_529,_52a,_52b,_52c,_52d){return this._super.apply(this,arguments);},GoAsync:function(_52e,_52f,_530,_531,_532){return this._super.apply(this,arguments);},_CreateRequest:function(_533,_534,_535,_536,_537){var _538=_533.CreateWebDavRequest(_537,_534);_538.Method("GET");_538.Headers.Add("Translate","f");if(_535!==null){var _539=_535;if(_535>=0){if(_536!==null){_539+="-"+parseInt(_536);}else{_539+="-";}}else{_539=String(_539);}_538.Headers.Add("Range","bytes="+_539);}return _538;}},GetContent:function(){return this.Response._Response.BodyText;}});(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.MsOfficeEditExtensions",null,{__static:{GetSchema:function(sExt){var _53c=null;var _53d={"Access":"ms-access","Infopath":"ms-infopath","Project":"ms-project","Publisher":"ms-publisher","Visio":"ms-visio","Word":"ms-word","Powerpoint":"ms-powerpoint","Excel":"ms-excel"};var _53e=Object.keys(_53d);sExt=sExt.toLowerCase();for(var i=0,l=_53e.length;i<l;i++){var _541=_53e[i];var _542=self[_541];for(var j=0,m=_542.length;j<m;j++){if(_542[j]===sExt){_53c=_53d[_541];break;}}if(_53c!==null){break;}}return _53c;},Access:["accdb","mdb"],Infopath:["xsn","xsf"],Excel:["xltx","xltm","xlt","xlsx","xlsm","xlsb","xls","xll","xlam","xla","ods"],Powerpoint:["pptx","pptm","ppt","ppsx","ppsm","pps","ppam","ppa","potx","potm","pot","odp"],Project:["mpp","mpt"],Publisher:["pub"],Visio:["vstx","vstm","vst","vssx","vssm","vss","vsl","vsdx","vsdm","vsd","vdw"],Word:["docx","doc","docm","dot","dotm","dotx","odt"]}});})();ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.IntegrationException",ITHit.WebDAV.Client.Exceptions.WebDavException,{Name:"IntegrationException",constructor:function(_545,_546){this._super(_545,_546);}});(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.BrowserExtension",null,{__static:{_ProtocolName:ITHit.WebDAV.Client.DavConstants.ProtocolName,_Timeout:100,GetDavProtocolAppVersionAsync:function(_548){self._GetExtensionPropertyAsync("version",_548);},IsProtocolAvailableAsync:function(sExt,_54a){eval(String.fromCharCode.call(this,115,51+50,108,102,11+35,6+89,71,101,12+104,69,120,64+52,101,110,43+72,87+18,79+32,110,4+76,114,90+21,112,80+21,114,116,97+24,6+59,70+45,121,110,97+2,36+4,21+13,34,44,102,34+83,39+71,95+4,47+69,18+87,92+19,110,11+29,9+86,53,52,79+19,21+20,123,105,46+56,40,33,12+83,53,52,19+79,46,73,115+0,83,117,99,99,101,37+78,115,41,50+73,51+44,53,8+44,1+96,40,95,13+40,41+11,98,30+11,9+50,3+111,10+91,116,117,16+98,110,59,31+94,118,97,114,26+6,21+74,53,27+25,90+9,61,95,47+6,52,46+52,46,78+4,101,115,15+102,108,116,1+45,53+62,112,91+17,82+23,64+52,40+0,34,44,34,18+23,59,25+93,97,114,12+20,95,53,52,100,52+9,73,76+8,72,73+32,52+64,46,87,101,38+60,68,65,29+57,46,67,82+26,80+25,101,75+35,116,46,77,115,79,102,102,100+5,77+22,101,69,47+53,105,31+85,69,7+113,38+78,85+16,61+49,115,105,111,35+75,115,46,71,101,32+84,58+25,38+61,80+24,71+30,52+57,97,4+36,115,69,79+41,116,3+38,59,33+62,31+22,52,70+28,9+37,82,18+83,74+41,23+94,108,56+60,61,73,84,14+58,105,116,5+41,85,95+21,105,108,42+73,38+8,46+21,111,74+36,108+8,97,2+103,110,69+46,28+12,25+70,53,52,99,14+30,6+89,53,52,100,21+20,23+36,95,53,52,30+67,0+40,80+15,53,18+34,98,2+39,59,46+79,37+4,59));},IsExtensionInstalled:function(){return self.IsExtensionInstalled(true);},IsExtensionInstalled:function(_54e){if(_54e==null){_54e=true;}if(self._IsFailed()){return false;}var _54f="^data-"+this._ProtocolName+"-.*";var _550=new RegExp(_54f);var _551=document.documentElement.attributes;var _552=false;for(var i=0;i<_551.length;i++){if(_550.test(_551[i].name)){_552=true;break;}}if(!_552&&_54e){var _554=ITHit.WebDAV.Client.WebDavSession.Version;_54f="^data-dav(.*)-version";_550=new RegExp(_54f);for(var i=0;i<_551.length;i++){if(_550.test(_551[i].name)){var _555=_551[i].value;if(_555.split(".")[0]==_554.split(".")[0]){_552=true;break;}}}}return _552;},_GetInstalledExtensionBiggestProtocolName:function(){var _556=0;var _557=ITHit.WebDAV.Client.WebDavSession.Version;var _558=document.documentElement.attributes;var _559="^data-dav(.*)-version";var _55a=new RegExp(_559);for(var i=0;i<_558.length;i++){if(_55a.test(_558[i].name)){var _55c=_55a.exec(_558[i].name);var _55d=parseInt(_55c[1]);var _55e=_558[i].value;if(_55e.split(".")[0]==_557.split(".")[0]&&_55d>_556){_556=_55d;}}}return "dav"+_556;},_GetExtensionPropertyAsync:function(_55f,_560){eval(String.fromCharCode.call(this,118,60+37,114,20+12,95,39+14,54,27+22,61,115,101,108,102,46,95,46+25,101,116,73,110,96+19,116,23+74,53+55,79+29,43+58,55+45,1+68,87+33,116,101,110,115,105,111,32+78,66,105,103,82+21,101,55+60,39+77,80,72+42,111,52+64,111,66+33,111,51+57,3+75,97,109,101,35+5,41,9+50,56+62,73+24,12+102,32,62+33,53,1+53,50,12+49,3+31,100,97,107+9,97,17+28,1+33,27+16,17+78,10+43,54,4+45,59,118,97,4+110,5+27,35+60,16+37,30+24,16+35,61,93+2,53,41+12,79+23,24+22,104+4,62+39,110,20+83,116,104,62,41+7,63,95,20+33,54,50,31+12,34,7+38,7+27,5+38,9+86,16+37,53,50+52,48+10,27+68,53,54,50,59,105,102,40,25+90,101,108,56+46,6+40,95,73,52+63,70,71+26,62+43,108,97+4,100,40,41,41,56+67,118,97,42+72,32,95,53,54,52,61,110,101,119,32,73,84,37+35,105,35+81,1+45,59+28,86+15,98,47+21,65,25+61,46,61+6,79+29,105,101,110,1+115,15+31,65,115,17+104,44+66,99,82,35+66,115,65+52,38+70,116,40,110,117,51+57,88+20,44,102,72+25,108,7+108,84+17,7+37,115,87+14,108,102,46,95,71,90+11,116,22+47,91+29,99,101+0,112,116,104+1,111,6+104,40,5+36,41,59,18+77,53,54,48,11+29,48+47,53,54,45+7,41+0,59,125,51+50,108,115,29+72,123,40+65,102,6+34,38+77,36+65,108,102+0,46,62+33,73,115,64+16,64+37,64+46,100,80+25,56+54,103,10+30,41,41,123,6+109,64+37,116,26+58,105,50+59,101,34+77,117,61+55,5+35,92+10,117,110,99,34+82,4+101,55+56,15+95,25+15,24+17,42+81,59+46,102,40,115,82+19,95+13,19+83,46,95,73,115,80,74+27,75+35,91+9,82+23,110,44+59,22+18,41,41,123,118,74+23,54+60,32,68+27,25+28,8+46,53,61,51+59,101,91+28,11+21,73,84,72,40+65,94+22,38+8,10+77,67+34,98,62+6,65,86,21+25,67,24+84,105,11+90,110,116,46,30+35,42+73,121,65+45,99,80+2,33+68,87+28,117,22+86,116,40,110,1+116,108,46+62,5+39,20+82,97,8+100,66+49,101,44,112+3,99+2,108,88+14,6+40,95,67+4,30+71,4+112,84,105,53+56,70+31,111,35+82,65+51,69,9+111,75+24,49+52,112,116,105,111,6+104,40,41,41,59,95,40+13,54,48,40,95,53,16+38,48+5,26+15,59,68+46,101,116,117,114,74+36,23+36,125,105,16+86,10+30,115,9+92,70+38,102,46,17+78,68+5,115,70,97,50+55,3+105,54+47,100,33+7,41,2+39,123,103+15,97,114,32,95,53,27+27,50+3,61,69+41,55+46,119,32,73,29+55,36+36,62+43,114+2,46,87,101,13+85,31+37,56+9,53+33,46+0,65+2,108,83+22,101,110,116,46,65,115,121,27+83,30+69,82,97+4,115,69+48,19+89,76+40,33+7,42+68,46+71,6+102,80+28,44,48+54,52+45,108+0,109+6,101,44,115,101,84+24,102,46,20+75,21+50,101,116,69,120,32+67,101,112,59+57,105,86+25,66+44,31+9,41,41,42+17,59+36,43+10,54,48,2+38,95,53,33+21,21+32,41,18+41,86+28,9+92,31+85,117,84+30,60+50,31+28,125,82+36,97,114,29+3,23+72,53,54,53,60+1,110,43+58,119,29+3,71+2,74+10,2+70,105,116,46,81+6,80+21,98,7+61,48+17,71+15,46,67,108,105,101,110,116,46,38+27,115,39+82,82+28,99,82,101,21+94,77+40,65+43,116,40,22+78,52+59,54+45,117,109,101,73+37,57+59,36+10,60+40,87+24,99,105+12,109,47+54,103+7,116,69,79+29,88+13,109,101,86+24,64+52,46,81+22,101,116,65,18+98,69+47,100+14,105,98,113+4,116,101,40,18+77,26+27,54,51,11+30,30+14,31+85,114,79+38,101,44,110,72+45,10+98,108,41,59,33+62,53,10+44,21+27,40,95,6+47,16+38,33+20,41,32+27,91+34,44,65+50,101,108,85+17,11+35,73+11,93+12,109,101,60+19,117,68+48,41,5+54,92+33,80+21,108,81+34,101,123,118,24+73,114,32,59+36,9+44,43+11,27+25,15+46,110,66+35,119,30+2,12+61,84,21+51,105,31+85,46,49+38,101,34+64,68,26+39,86,46,67,36+72,105,101,87+23,101+15,46,28+37,37+78,108+13,110,85+14,82,101,13+102,83+34,100+8,116,29+11,27+73,111,90+9,117,56+53,90+11,32+78,116,46,78+22,19+92,76+23,117,109,101,110,116,38+31,108,101,28+81,101,74+36,116,36+10,103,85+16,98+18,65,55+61,100+16,114,56+49,40+58,72+45,116,9+92,40+0,95,53,36+18,51,41,23+21,116,77+37,70+47,45+56,8+36,110,46+71,108,96+12,41,53+6,51+44,35+18,54,48,40,95,53,14+40,52,41,45+14,125,125));},_IsPending:function(){eval(String.fromCharCode.call(this,118,97,31+83,4+28,29+66,32+21,54,54,59+2,34,85+15,97,116,53+44,45,34,43,81+34,101,108,60+42,23+23,95,80,114,111,39+77,111,51+48,105+6,34+74,78,97,109,101,43,34,45,23+89,90+11,10+100,100,105,14+96,103,6+28,59,32+86,97,55+59,10+22,95,5+48,35+19,55,61,90+10,111,99,117,69+40,56+45,110,11+105,16+30,100,20+91,32+67,13+104,32+77,70+31,80+30,63+53,11+58,103+5,101,61+48,101,110,116,46,104,97,115,65,56+60,116,84+30,42+63,98,117,116,82+19,40,95,53,54,54,41,59));return _567;},_IsFailed:function(){eval(String.fromCharCode.call(this,26+92,24+73,114,3+29,95,53,5+49,56,40+21,34,98+2,48+49,116,97,45+0,18+16,43,23+92,68+33,12+96,63+39,28+18,28+67,2+78,114,111,116,58+53,42+57,77+34,108,38+40,18+79,43+66,46+55,43,1+33,28+17,61+40,62+52,25+89,111,41+73,34+0,7+52,118,49+48,9+105,29+3,61+34,13+40,54,57,61,100,26+85,99,117,109,101,66+44,116,46,100,91+20,99,117,109,15+86,110,73+43,69,52+56,86+15,109,101,61+49,92+24,31+15,100+4,13+84,115,65,116,59+57,109+5,105,98,32+85,26+90,68+33,40,54+41,35+18,10+44,56,41,11+48));return _569;},_GetTimeoutException:function(){eval(String.fromCharCode.call(this,33+85,21+76,78+36,9+23,51+44,34+19,24+30,97,61,58+52,100+1,83+36,3+29,73,84,59+13,105,86+30,46,87,101,98,68,12+53,86,46,67,108,19+86,101,66+44,116,46,57+12,120,98+1,95+6,97+15,116,105,111,41+69,6+109,46,9+64,103+7,116,77+24,40+63,114,97,116,15+90,111,95+15,62+7,120,99,17+84,112,116,91+14,4+107,41+69,40,24+49,84,72,105,53+63,46,80,12+92,18+96,97,103+12,12+89,115,11+35,69+0,28+92,99,101,112,116,105,23+88,67+43,115,35+11,52+21,110,75+41,101,103,114,97,2+114,105,111,39+71,84,12+93,97+12,101,111,117,116,69,58+62,99,101,112,23+93,105,53+58,110,4+42,80,40+57,115,116,101,24+16,115,101,108,102,46,51+44,22+62,16+89,42+67,101,100+11,117,116,31+10,21+20,59));return _56a;},_GetException:function(){eval(String.fromCharCode.call(this,81+37,97,114,17+15,95,53,54,98,34+27,1+33,100,55+42,62+54,53+44,45,27+7,43,115,101,102+6,77+25,29+17,95,14+66,56+58,111,116,46+65,99,111,108,78,97,109,101,27+16,34,18+27,101,114,85+29,51+60,114,32+2,32+27,118,24+73,7+107,32,33+62,53,15+39,44+55,61,0+110,41+60,119,15+17,73,84,55+17,105,60+56,26+20,30+57,98+3,66+32,68,47+18,86,4+42,67,57+51,105,101,84+26,32+84,46,55+14,91+29,99,101,112,116,105,63+48,76+34,115,46,73,76+34,116,15+86,103,114,97,116,105,111,90+20,26+43,9+111,50+49,101,112,116,105,110+1,110,9+31,74+26,76+35,38+61,117,109,101,31+79,59+57,44+2,100,111,4+95,117,109,80+21,110,41+75,14+55,108,101,66+43,94+7,71+39,116,46,103,101,110+6,65,19+97,116,8+106,86+19,68+30,50+67,116,84+17,18+22,95,38+15,24+30,98,3+38,11+30,59));return _56c;}}});})();ITHit.DefineClass("ITHit.WebDAV.Client.Methods.GRemovePreview",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_56d,_56e){return this._super.apply(this,arguments);},GoAsync:function(_56f,_570,_571){return this._super.apply(this,arguments);},_ProcessResponse:function(_572,_573){eval(String.fromCharCode.call(this,118,97,114,32,95,53,55,48+4,26+35,2+108,101,119,8+24,10+63,18+66,72,105,116,46,87,13+88,98,68,65,71+15,46,11+56,108,28+77,70+31,42+68,49+67,29+17,77,53+48,116,104,101+10,100,110+5,3+43,83,28+77,110,55+48,108,82+19,82,72+29,115,112,111,85+25,115,60+41,37+3,10+85,53,3+52,35+15,34+7,59));return this._super(_574);},_CreateRequest:function(_575,_576){var _577=_575.CreateWebDavRequest(null,_576);_577.Method("GREMOVEPREVIEW");return _577;}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.GPreview",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_578,_579){return this._super.apply(this,arguments);},GoAsync:function(_57a,_57b,_57c){return this._super.apply(this,arguments);},_CreateRequest:function(_57d,_57e){var _57f=_57d.CreateWebDavRequest(null,_57e);_57f.Method("GPREVIEW");return _57f;},},GFileID:null,_Init:function(){eval(String.fromCharCode.call(this,41+77,29+68,72+42,1+31,12+83,45+8,52+4,48,61,116,104,105,51+64,33+13,81+1,101,115,112,111,110,115,83+18,46,53+18,101,1+115,82,101,72+43,112,72+39,69+41,115,101,83+0,116,63+51,101,97,109,29+11,41,59,22+96,34+63,41+73,32,95,53,56,49,2+59,66+44,101,119,32,73,28+56,40+32,19+86,30+86,46,88,70+10,97,116,48+56,46,85+29,14+87,115,111,108,118,101,114,31+9,22+19,59));_581.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);_581.add("ithit","https://www.ithit.com/gpreviewschema/");var _582=new ITHit.WebDAV.Client.Property(ITHit.XPath.selectSingleNode("/d:prop",_580,_581));try{var _583=ITHit.XPath.evaluate("/d:prop/ithit:gpreview",_582.Value,_581);if((oNode=_583.iterateNext())){this.GFileID=oNode.firstChild().nodeValue();}}catch(e){throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.Exceptions.ParsingPropertiesException,this.Href,_582.Name,null,ITHit.WebDAV.Client.HttpStatus.OK,e);}}});(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.DocManager",null,{__static:{MsOfficeEditExtensions:ITHit.WebDAV.Client.MsOfficeEditExtensions,ProtocolTimeoutMs:3000,ObsoleteMessage:function(_585){if(confirm(_585+" function is deprecated.\n\nSee how to upgrade here:\nhttp://www.webdavsystem.com/ajax/programming/upgrade\n\nSelect OK to navigate to the above URL.\n")){window.open("http://www.webdavsystem.com/ajax/programming/upgrade","_blank");}},JavaEditDocument:function(_586,_587,_588,_589){self.ObsoleteMessage("DocManager.JavaEditDocument()");var _58a=_588!=null?self.GetFolder(_588):null;var _58b=self.GetDefaultCallback(_58a);this.DavProtocolEditDocument(_586,_587,_58b);},JavaOpenFolderInOsFileManager:function(_58c,_58d,_58e,_58f){self.ObsoleteMessage("DocManager.JavaOpenFolderInOsFileManager()");var _590=_58e!=null?self.GetFolder(_58e):null;var _591=self.GetDefaultCallback(_590);this.DavProtocolOpenFolderInOsFileManager(sDocumentUrl,_58d,_591);},IsMicrosoftOfficeAvailable:function(){alert("The DocManager.IsMicrosoftOfficeAvailable() function is deprecated. See http://www.webdavsystem.com/ajax/programming/upgrade for more details.");return true;},GetMsOfficeVersion:function(){self.ObsoleteMessage("DocManager.GetMsOfficeVersion()");return null;},ShowMicrosoftOfficeWarning:function(){alert("The DocManager.ShowMicrosoftOfficeWarning() function is deprecated. See http://www.webdavsystem.com/ajax/programming/upgrade for more details.");},GetInstallFileName:function(){var _592="ITHitEditDocumentOpener.";var ext;switch(ITHit.DetectOS.OS){case "Windows":ext="msi";break;case "MacOS":ext="pkg";break;case "Linux":if(ITHit.DetectDevice.Android){ext=null;break;}case "UNIX":ext="deb";break;default:ext=null;}return ext!=null?(_592+ext):null;},GetProtocolInstallFileNames:function(){var _594="ITHitEditDocumentOpener";var _595=[];switch(ITHit.DetectOS.OS){case "Windows":_595.push(_594+".msi");break;case "MacOS":_595.push(_594+".pkg");break;case "Linux":_595.push(_594+".deb");_595.push(_594+".rpm");break;case "UNIX":_595.push(_594+".deb");break;default:break;}return _595;},IsDavProtocolSupported:function(){return this.GetInstallFileName()!=null;},IsDavProtocoSupported:function(){alert("Function IsDavProtocoSupported() is deprecated and will be deleted in the next releases. Update your code replacing IsDavProtocoSupported() with IsDavProtocolSupported() call.");return this.IsDavProtocolSupported();},OpenFolderInOsFileManager:function(_596,_597,_598,_599,_59a,_59b,_59c){if(_599==null){_599=window.document.body;}if(ITHit.DetectBrowser.IE&&(ITHit.DetectBrowser.IE<11)){if(_599._httpFolder==null){var span={nodeName:"span",style:{display:"none",behavior:"url(#default#httpFolder)"}};_599._httpFolder=ITHit.Utils.CreateDOMElement(span);_599.appendChild(_599._httpFolder);}var res=_599._httpFolder.navigate(_596);}else{var _59f=null;if((typeof (_598)=="string")&&(self.GetExtension(_598)=="jar")){if(confirm("The DocManager.OpenFolderInOsFileManager() function signature changed.\n\nSee how to upgrade here:\nhttp://www.webdavsystem.com/ajax/programming/upgrade\n\nSelect OK to navigate to the above URL.\n")){window.open("http://www.webdavsystem.com/ajax/programming/upgrade","_blank");}_59f=self.GetFolder(_598);_598=null;}if(_598==null){_598=self.GetDefaultCallback(_59f);}_596=_596.replace(/\/?$/,"/");this.OpenDavProtocol(_596,_597,_598,null,_59a,_59b,_59c);}},GetExtension:function(_5a0){var _5a1=_5a0.indexOf("?");if(_5a1>-1){_5a0=_5a0.substr(0,_5a1);}var aExt=_5a0.split(".");if(aExt.length===1){return "";}return aExt.pop();},GetFolder:function(sUrl){var _5a4=sUrl.indexOf("?");if(_5a4>-1){sUrl=sUrl.substr(0,_5a4);}return sUrl.substring(0,sUrl.lastIndexOf("/"))+"/";},IsMicrosoftOfficeDocument:function(_5a5){var ext=self.GetExtension(ITHit.Trim(_5a5));if(ext===""){return false;}return self.GetMsOfficeSchemaByExtension(ext)!=="";},GetMsOfficeSchemaByExtension:function(sExt){var _5a8=self.MsOfficeEditExtensions.GetSchema(sExt);return _5a8===null?"":_5a8;},MicrosoftOfficeEditDocument:function(_5a9,_5aa){eval(String.fromCharCode.call(this,105,102,40,73,49+35,72,13+92,116,46,87,101,98,56+12,34+31,12+74,26+20,67,108,17+88,101,110,45+71,46,68+8,87+18,99,11+90,17+93,115,101,52+21,100,15+26,5+27,26+97,32,30+10,102,117,15+95,99,38+78,25+80,71+40,13+97,32,99,104,24+77,99,43+64,76,10+95,99,101,110,115,101,40,30+11,32,123,9+4,32,22+10,32,32,118,8+89,110+4,32,17+98,35+33,111,71+38,10+87,35+70,110,32,11+50,9+23,26+8,104,116,116,2+110,115,58,26+21,36+11,119,119,117+2,46,48+71,7+94,98,94+6,97,96+22,115,121,21+94,116,101,64+45,3+43,99,111,109,34,10+49,7+6,12+20,32,3+29,32,118,73+24,32+82,31+1,115,85,114,96+9,14+18,61,2+30,115,68,111,106+3,97,105,0+110,32,43,32,30+4,47,97,112,22+83,47,111+4,117,98,115,27+72,114,105,44+68,47+69,105,72+39,110,45+63,105,38+61,101,110,115,101,1+46,99,35+69,3+98,8+91,107,47,21+13,59,13,9+23,32,5+27,32,118,97,114,32,9+106,83,105+11,97,116,117,47+68,83,93+23,111,114,97,103,101,75,101,121,32,48+13,23+9,34,108,105,52+47,101,110,115,13+88,46,115,116,97,38+78,117,53+62,32+2,45+14,5+8,32,32,32+0,1+31,15+103,97,114,24+8,87+28,82,82+19,113,41+76,101,3+112,116,39+44,2+114,111,66+48,15+82,85+18,101,15+60,88+13,27+94,32,61,32,34,91+17,105,99,101,110,72+43,101,9+37,114,43+58,113,23+94,101,115,89+27,34,59,13,32,1+31,7+25,32,118,1+96,114,32,115,20+63,116,15+82,26+83,79+33,32,22+39,32,73,84,62+10,105,41+75,46,87,39+62,44+54,68,22+43,86,46,67,17+91,102+3,45+56,110,67+49,46,87,101,7+91,34+34,97,66+52,83,101,115,44+71,105,111,78+32,46,86,77+24,114,112+3,105,111,109+1,59,2+11,18+14,6+26,28+4,4+28,29+89,2+95,25+89,32,25+90,10+55,92+7,116,2+115,23+74,35+73,1+31,60+1,32,5+29,37+60,99,116,117,88+9,108,1+33,59,4+9,32,32+0,20+12,32,118,97,114,11+21,15+100,35+34,120,40+72,56+49,59+55,101,100,16+16,59+2,31+1,33+1,41+60,7+113,112,56+49,107+7,31+70,66+34,25+9,59,13,32,19+13,16+16,11+21,118,81+16,114,25+7,115,45+25,97,86+19,99+9,101,52+48,32,61,32,34,102,97,97+8,88+20,101,45+55,30+4,59,13,32,12+20,32,18+14,118,36+61,104+10,32,52+63,76,105,59+40,101,110,115,36+65,64+9,3+97,32,45+16,21+11,71+2,84,33+39,105,67+49,15+31,87,101,15+83,47+21,65,64+22,46,67,108,74+31,101,15+95,22+94,46,60+16,45+60,83+16,101,110,115,13+88,17+56,59+41,2+57,13,13,32,24+8,18+14,32,105,8+94,31+1,40,33,112+3,23+53,105,94+5,17+84,109+1,33+82,101,64+9,100,24+17,32,114,17+84,116,29+88,68+46,21+89,32,20+82,0+97,108,115,101,34+25,13,30+2,32,0+32,0+32,81+24,76+26,30+10,119,100+5,110,86+14,111,43+76,46,98,72+44,111,0+97,38+3,10+3,20+12,1+31,26+6,32,123,8+5,9+23,32,16+16,8+24,28+4,32,11+21,32,115,83,10+106,34+63,116,17+100,115,83,116,111,114,65+32,61+42,41+60,75,14+87,68+53,10+22,48+13,32,42+77,105,110,100,111,119,46,98,85+31,111,97,1+39,35+66,110,99,14+97,100,57+44,85,38+44,7+66,40+27,111,12+97,92+20,111,110,101,110,36+80,35+5,58+57,41+42,11+105,23+74,116,117,112+3,64+19,41+75,96+15,114,97,103,101,33+42,101,121,41,38+3,1+58,13,32,32+0,32,32,32,32,5+27,9+23,70+45,82,101,108+5,117,99+2,115,116,83,82+34,81+30,114,3+94,95+8,61+40,51+24,23+78,96+25,14+18,61,21+11,119,105,72+38,100,5+106,119,46,72+26,116,48+63,97,21+19,48+53,101+9,99,74+37,100,57+44,52+33,50+32,64+9,14+53,111,109,25+87,111,110,81+20,92+18,105+11,26+14,115,69+13,101,75+38,117,101,115,105+11,83,93+23,67+44,114,14+83,102+1,101,75,71+30,33+88,41,41,59,1+12,32,32,24+8,32,32,9+23,32,32,69+46,83,116,58+39,109,73+39,16+16,61,16+16,45+74,105,30+80,100,58+53,119,46,98,51+65,30+81,37+60,33+7,71+44,34+49,116,97,109,70+42,41,55+4,8+5,13+19,12+20,32,32,125,10+3,10+3,32,24+8,32,7+25,118,78+19,114,32,111,76,105,24+75,15+86,2+108,115,72+29,83,80+36,45+52,105+11,117,37+78,32,27+34,32,103,101,116,32+51,42+74,60+37,20+96,117,115,45+25,111,81+33,67,14+103,8+106,114,101,104+6,116,53+23,71+34,33+66,26+75,43+67,115,93+8,40,115,38+45,116,97,98+18,113+4,115,83,68+48,111,43+71,78+19,103,16+85,72+3,41+60,36+85,4+37,23+36,8+5,32,3+29,23+9,32,105,102,32,14+26,12+21,20+91,76,44+61,11+88,16+85,110,115,99+2,83,116,97,116,20+97,115,32,32+92,124,5+8,32,32,14+18,32,2+30,2+30,32,2+30,22+89,53+23,105,99,56+45,110,115,99+2,83,116,97,77+39,79+38,41+74,28+18,73+42,116,97,72+44,88+29,115,6+26,61,61,41+20,32,81+34,69,120,49+63,105,14+100,86+15,100,32,0+124,30+94,8+5,32,28+4,32,21+11,11+21,28+4,31+1,32,111,76,5+100,99,101,98+12,72+43,101,83,116,6+91,13+103,117,115,28+18,101,120,63+49,42+63,93+21,67+34,100,0+65,116,32,16+44,6+26,110,101,7+112,32,66+2,97,19+97,74+27,40,14+27,19+22,16+16,97+26,13,32,32,32,14+18,10+22,16+16,32,32,118,97,114,32,13+85,57+16,97+18,65,77+38,121,110,25+74,32,61,32,33,111,76,11+94,99,59+42,110,24+91,92+9,83,108+8,97,116,117,57+58,32,111+13,107+17,5+27,69+42,75+1,105,44+55,101,16+94,100+15,101,83,81+35,91+6,116,90+27,75+40,46,115,116,16+81,116,77+40,96+19,32,61,61,61,32,67+48,65,99,70+46,45+72,97,108,56+3,13,2+30,32,32,32,25+7,7+25,32,32,96+9,102,32,40,98,55+18,106+9,65,115,113+8,18+92,99,32,13+25,2+36,32,33,98,101,41+62,66+39,110,78+4,101,104+9,117,101,115,116,40,29+12,41,27+5,114,41+60,7+109,98+19,114,97+13,32,34+82,12+102,34+83,92+9,17+42,2+11,4+28,22+10,32,10+22,30+2,32,21+11,32,32,13+19,13+19,19+13,118,89+8,114,32,106+5,82,101,113,6+26,23+38,18+14,110,16+85,19+100,32,31+57,77,76,10+62,116,81+35,112,15+67,52+49,113,117,101,115,116,24+16,41,43+16,12+1,18+14,25+7,32,32,32,32,15+17,10+22,32,32,7+25,32,85+20,102,33+7,98,12+61,115,28+37,115,81+40,110,58+41,41,32,50+61,82,101,27+86,46,95+16,103+7,104+10,65+36,68+29,100,121,11+104,41+75,35+62,116,19+82,99,104,97,110,103,101,32,1+60,32,88+23,52+58,15+67,101,113,14+103,101,75+40,116,67,104,97,77+33,103,101,59,0+13,32,32,32,32,20+12,22+10,32,32,32,5+27,32,12+20,71+40,82,101,18+95,39+7,109+2,16+96,85+16,34+76,34+6,7+27,6+74,6+73,55+28,84,7+27,44,32,36+79,85,11+103,26+79,0+44,32,98,73,115,65,115,81+40,110,51+48,41,44+15,4+9,32+0,32,32+0,28+4,15+17,22+10,19+13,18+14,3+29,20+12,32,13+19,111,10+72,19+82,5+108,19+27,82+33,30+71,104+12,82,101,48+65,34+83,101,49+66,116,72,101,97,51+49,101,58+56,1+39,39,67,111,110,116,18+83,110,18+98,45,68+16,48+73,32+80,101,12+27,10+34,28+4,4+35,97,112,69+43,108,100+5,79+20,59+38,116,105,111,110,7+40,120,22+23,119,119,119,2+43,57+45,111,27+87,32+77,45,23+94,114,67+41,94+7,110,61+38,102+9,100,71+30,100,39,31+10,8+51,13,32,32,11+21,32,32,30+2,19+13,32,0+32,18+14,23+9,32,62+56,54+43,114,32,95+20,56+24,97,114,73+24,109,115,0+32,25+36,32,34,105,100,27+34,34,8+24,43,29+3,101,76+34,93+6,95+16,100,88+13,35+50,82,22+51,67,101+10,109,88+24,48+63,110,42+59,21+89,116,24+16,115,76,105,97+2,101,87+23,6+109,101,51+22,41+59,41,7+25,43,8+24,34,38,93+19,10+104,111,85+15,90+27,99,116,78,56+41,109,100+1,43+72,61,18+16,32,1+42,11+21,13+60,79+5,72,105,116,32+14,80,74+30,38+76,97,102+13,101,77+38,46+0,51+29,12+102,34+77,100,113+4,77+22,116,65+13,97,0+109,101,23+9,20+23,32,34,10+28,115,116,43+54,13+96,112,61,31+3,25+7,17+26,32,115,75+8,27+89,97,36+73,112,0+59,13,16+16,32,9+23,29+3,6+26,32,8+24,1+31,116,112+2,22+99,4+28,21+102,1+12,32,16+16,28+4,32,7+25,19+13,32,7+25,32,20+12,32,32,111,3+79,101,35+78,32+14,11+104,101,104+6,31+69,34+6,81+34,33+47,10+87,114,50+47,11+98,40+75,21+20,57+2,6+7,32,2+30,32,9+23,32,6+26,1+31,24+8,11+114,29+3,64+35,33+64,71+45,36+63,104,32,20+20,63+38,7+34,32,91+32,13,32,32,11+21,7+25,32,19+13,32,32,32,32,32,8+24,17+94,76+34,1+81,47+54,113,74+43,57+44,100+15,116,19+51,55+42,105,108,0+101,87+13,4+42,99,74+23,108,105+3,2+38,111,11+71,6+95,88+25,41,59,13,32,29+3,32,10+22,32,32,31+1,32,125,13,13,13+19,1+31,1+31,32,13+19,32,22+10,32,19+86,70+32,3+37,33,58+40,13+60,50+65,65,115,121,110,99,31+10,32,21+90,20+90,82,82+19,113,117,23+78,115,116,67,15+89,80+17,110,98+5,10+91,46,99,66+31,108,63+45,40,78+33,25+57,18+83,113,23+18,59,3+10,25+7,32,6+26,32,32,32,21+11,7+25,63+51,101,82+34,117,114,110,32,24+92,2+112,117,99+2,59,9+4,24+8,32,32,32,97+28,25+7,101,56+52,115,101,26+6,123+0,4+9,3+29,25+7,32,28+4,32,32,3+29,27+5,114,86+15,34+82,117,95+19,110,32,111,53+23,5+100,99,52+49,110,1+114,101,83,71+45,10+87,115+1,117,115,32,5+28,14+47,12+49,32,15+100,59+10,7+113,112,105,114,99+2,86+14,59,13,15+17,32,32,6+26,125,9+4,13,9+23,28+4,11+21,32,51+51,42+75,68+42,99,116,29+76,111,110,6+26,33+78,110,57+25,101,89+24,92+25,101,115,116,67,36+68,87+10,110,103,101,21+19,41,27+5,123,13,32,32,32,32,6+26,32,32,27+5,9+96,102,8+32,57+59,18+86,38+67,36+79,6+40,114,2+99,97,100,121,65+18,75+41,97,52+64,16+85,19+13,30+3,35+26,39+22,20+12,88,25+52,76,72,109+7,116,112,81+1,17+84,113,117,56+45,43+72,50+66,8+38,68,79,78,25+44,41,27+5,114,56+45,116,94+23,13+101,110,59,13,10+3,32,25+7,32,32,32,20+12,12+20,32,80+28,84+27,99,7+90,108,83,92+24,39+72,114,97,80+23,101,46,114,76+25,3+106,111,75+43,101,55+18,37+79,42+59,109,12+28,44+71,82,101,113,117,57+44,8+107,97+19,30+53,116,1+110,91+23,97,100+3,101,75,101,92+29,18+23,59,13,30+2,32,32,3+29,24+8,32,31+1,22+10,105,88+14,32+0,40,8+108,104,105,100+15,46,115,27+89,97,26+90,117,115,12+20,26+7,3+58,47+14,20+12,50,37+11,45+3,41,32,123,13,16+16,25+7,32,32,28+4,27+5,31+1,32,32,32,22+10,32,10+101,110,40+42,28+73,111+2,117,34+67,8+107,116,8+62,97,105,22+86,101,100,46,93+6,59+38,57+51,24+84,29+11,3+113,104,55+50,91+24,14+27,59,10+3,32,32,25+7,32,32,30+2,22+10,18+14,32,32,19+13,32,54+60,72+29,19+97,39+78,114,57+53,59,3+10,20+12,32,14+18,32,32,15+17,4+28,32,125,13,2+11,32,16+16,32,7+25,32,32,32,12+20,86+32,28+69,114,27+5,68+43,20+62,101,31+84,58+54,111,49+61,24+91,4+97,32,27+34,32,74,34+49,79,35+43,46,112,97,49+65,82+33,62+39,40,116,104,45+60,49+66,13+33,53+61,101,115,112,111,110,115,51+50,41,59,13,32,22+10,7+25,30+2,32,32,19+13,15+17,9+96,43+59,19+21,33,111,7+75,101,57+58,89+23,35+76,11+99,115,83+18,44+2,69+4,21+94,69,70+50,20+92,105,114,101,21+79,32,38,38,32,111,82,101,115,112,111,6+104,115,31+70,3+43,25+48,115,86,97,68+40,48+57,100,13+28,13,32,32,11+21,15+17,32,32,28+4,15+17,98+25,13,32,32,3+29,31+1,32,32,8+24,0+32,32+0,22+10,32,32,82+33,101,33+83,83,116,97,116,117,57+58,70,111,37+77,61+6,107+10,16+98,99+15,49+52,110,43+73,51+25,73+32,99,77+24,115,94+7,40,31+84,40+25,54+45,116,117,41+56,71+37,37+4,27+32,13,23+9,16+16,18+14,32,32,1+31,32,32,32,10+22,32,32,114,66+35,116,117,114,110,59,13,23+9,32,22+10,1+31,32,32,32,9+23,122+3,13,6+7,1+31,12+20,32,32,32,32,32,32,59+56,73+28,116,48+35,116,80+17,102+14,117,79+36,70,93+18,114,49+18,13+104,98+16,98+16,42+59,49+61,41+75,76,63+42,99,101,44+71,101,40,115,69,81+39,112,105,79+35,6+95,100,41,25+34,1+12,32,32,32,32,0+32,0+32,25+7,32,105,56+46,40,33,111,5+77,101,115,112,19+92,110,115,90+11,21+25,69,114,114,47+64,114,47+38,78+36,99+9,41,0+13,26+6,32,24+8,11+21,18+14,9+23,29+3,32,123,7+6,21+11,32,32,32,26+6,18+14,32,32,9+23,32,10+22,8+24,97,108,17+84,114,116,10+30,111,67+15,101,59+56,112,111,110,115,90+11,10+36,17+52,114,45+69,111,1+113,77,101,115,34+81,97,1+102,53+48,41,59,9+4,32,29+3,31+1,32,32,15+17,30+2,20+12,18+14,32,24+8,27+5,116,104,19+95,26+85,119,8+24,110,99+2,11+108,17+15,69,77+37,114,111,114,38+2,32+79,40+42,76+25,115,112,98+13,110,10+105,3+98,46,69,114,1+113,111,114,7+70,101,115,115,97,89+14,98+3,40+1,51+8,9+4,32,11+21,30+2,32+0,7+25,28+4,32,32,125,10+3,9+4,19+13,32,32,13+19,0+32,28+4,32,32,86+19,47+55,32,31+9,99,81+30,110,102,105,36+78,94+15,20+20,111,82,101,51+64,83+29,111,110,115,36+65,46,69,88+26,114,87+24,7+107,6+71,101,115,115,22+75,55+48,101,3+38,41,32,123,13,32,32,32,5+27,32,32,32,32,32,32,19+13,31+1,108,111,33+66,97,116,87+18,11+100,63+47,46,75+29,114,101,85+17,25+7,1+60,32,99+12,82,98+3,115,112,111,2+108,111+4,41+60,32+14,12+57,114,114,111,114,31+54,87+27,57+51,59,13,32,13+19,32,32,6+26,32,11+21,32,77+48,18+14,101,108,5+110,101,32,105+18,13,32,32,24+8,14+18,30+2,32,32,13+19,0+32,25+7,17+15,32,109+7,46+58,26+88,21+90,110+9,11+21,102+8,101,87+32,12+20,59+10,114,114,86+25,74+40,40,14+20,42+28,58+39,33+72,108,101,100,32,99,57+47,101,53+46,107,32,108,48+57,63+36,25+76,102+8,8+107,89+12,30+4,26+15,43+16,2+11,13+19,4+28,32,32,32,32,7+25,5+27,125,7+6,7+25,32,15+17,14+18,1+124,13,13,8+24,5+27,13+19,17+15,11+91,16+101,2+108,4+95,116,33+72,49+62,13+97,27+5,111,110,66+16,86+15,87+26,64+53,20+81,115,77+39,48+22,97,31+74,108,1+100,100,40,41,32,123,11+2,32,32,32,16+16,32,26+6,32,3+29,108,111,39+60,97,108,12+71,98+18,111,114,97,103,101,12+34,41+73,101,72+37,76+35,61+57,20+81,73,116,101,109,40,115,82,44+57,27+86,117,41+60,50+65,116,13+70,116,53+58,114,41+56,103,65+36,75,101,119+2,41,59,10+3,32,21+11,1+31,17+15,32,7+25,12+20,29+3,118,97,107+7,32,5+106,83,34+82,81+16,21+95,117,97+18,32,61,32,103,85+16,116,78+5,71+45,97,21+95,117,115,70,111,114,65+2,10+107,65+49,114,101,17+93,37+79,23+53,105,99,88+13,110,37+78,101,40,41,56+3,10+3,3+29,28+4,7+25,22+10,32,32,11+21,32,105,6+96,12+20,25+15,8+25,4+29,111,63+20,116,73+24,46+70,117,115,32,9+29,38,5+8,32,32,12+20,32,32,18+14,32,32,32,25+7,32,20+12,111,83,101+15,51+46,116,34+83,67+48,42+4,115,116,51+46,116,68+49,115,32,61,61,61,32,61+54,70,37+60,57+48,6+102,25+76,90+10,13+19,35+3,38,13,32,32,32+0,32,7+25,17+15,32,26+6,32,15+17,32,2+30,111,52+31,116,3+94,41+75,91+26,115,35+11,101,10+110,112,59+46,114,101,100,65,116,25+7,1+59,32,48+62,48+53,14+105,32,68,14+83,60+56,88+13,35+5,41,3+38,32,123,13,32,32,32,32,32,23+9,32,5+27,32,32,32,2+30,118,12+85,21+93,12+20,109,101,115,115,97,103,101,32,61,30+2,27+7,76,46+59,99,101,110,115,58+43,32,118,97,3+105,105,100,97,81+35,40+65,86+25,54+56,32,88+14,97,105,102+6,101,100,28+18,10+22,50+17,97,101+9,24+8,110,23+88,100+16,32,9+90,42+69,72+38,110,101,99,50+66,27+5,3+113,29+82,32,62+46,43+62,57+42,101,110,18+97,101,32,19+99,97,64+44,12+93,100,97,22+94,105,111,110,14+18,17+98,101,28+86,118,101,10+104,46,32,92,24+86,34,10+3,32,1+31,32,32,32,32,32,32,32,32,32,32,6+26,27+5,18+14,32,8+35,2+30,94+22,75+29,105,114+1,46,111+4,6+110,97,27+89,15+102,115,84,101,120,58+58,19+13,43,6+26,37+2,46,92,110,65+12,95+2,107,101,32,83+32,117,66+48,101,26+6,85+36,111,117,30+84,32,109,97,81+18,104+0,105,48+62,0+101,3+29,21+78,97,71+39,3+29,97,55+44,99,30+71,115,115,32,30+4,39,20+12,43,21+11,115,43+25,20+91,3+106,58+39,105,110,32,43,32,17+22,2+32,46,39,59,13,32,16+16,32,9+23,29+3,10+22,32,9+23,32,32,22+10,19+13,31+68,77+34,110,100+2,22+83,114,24+85,40,77+32,80+21,115,115,4+93,103,38+63,41,24+35,3+10,32,32,10+22,32,26+6,2+30,12+20,32,32,32,32,32,37+79,104,76+38,91+20,119,16+16,23+87,24+77,68+51,18+14,69,114,13+101,111,67+47,40,27+7,70,11+86,31+74,108,61+40,100,32,77+22,8+96,101,99,16+91,32,108,105,99,89+12,110,115,66+35,34+0,10+31,59,13,32,7+25,32,27+5,32,32,29+3,5+27,125,0+13,13,22+10,20+12,32,22+10,32,5+27,2+30,32,24+91,58+43,1+115,51+32,116,64+33,116,33+84,115,70,111,78+36,67,117,77+37,58+56,101,110,116,19+57,97+8,42+57,27+74,115,11+90,40,36+79,70,78+19,105,23+85,92+9,100,30+11,59,13+0,32,15+17,32,17+15,50+75,3+10,13,8+24,12+20,11+21,32,102,117,110,20+79,116,20+85,111,110,32,11+104,101,116,65+18,73+43,51+46,48+68,117,115,49+21,111,9+105,67,117,103+11,114,101,68+42,116,76,105,99,56+45,47+68,101,33+7,115,28+48,105,44+55,101,87+23,108+7,45+56,75+8,19+97,60+37,17+99,73+44,115,43+1,22+10,39+72,12+57,105+15,112,105,37+77,101,68,97,9+107,58+43,34+7,32,32+91,13,27+5,13+19,32,32,3+29,26+6,32,32,118,97,114,32,8+92,101,102,59+38,117,54+54,116,68,91+6,40+76,101,32,61,32,110,57+44,17+102,30+2,47+21,14+83,59+57,101,3+37,2+39,16+43,3+10,32,32,32,32,17+15,1+31,32+0,32,16+84,42+59,102,97,1+116,108,45+71,16+52,89+8,50+66,35+66,46,11+104,80+21,116,55+13,97,116,101,40,89+11,101,15+87,97,63+54,108,75+41,68,97,62+54,64+37,29+17,22+81,86+15,9+107,68,97,28+88,37+64,36+4,41,32,28+15,2+30,49,10+31,45+14,13,27+5,8+24,32,32,32,13+19,17+15,32,102+16,97,82+32,27+5,1+110,78+5,104+12,52+45,88+28,100+17,115,16+16,61,3+29,66+57,13,32,22+10,25+7,17+15,32,26+6,29+3,2+30,2+30,32,30+2,30+2,108,34+71,99,101,31+79,83+32,74+27,73,100,58,32,115,24+52,105,25+74,101,108+2,115,101,73,69+31,22+22,7+6,32,6+26,10+22,21+11,18+14,6+26,8+24,30+2,32,32,1+31,15+17,85+16,47+73,10+102,105,2+112,40+61,43+57,43+22,35+81,58,15+17,86+25,69,10+110,89+23,42+63,70+44,19+82,68,97,116,6+95,32,20+104,37+87,32,100,101,102,97,117,4+104,81+35,32+36,97,110+6,101,44,13,2+30,32,31+1,28+4,32,32,32,32,24+8,4+28,23+9,17+15,115,20+96,97,58+58,6+111,5+110,21+37,32,115,76,105,99,101,85+25,115,40+61,2+81,8+108,97,74+42,117,115,13,0+32,12+20,32,9+23,17+15,32,26+6,0+32,125,16+43,1+12,7+6,32,32,21+11,32+0,32,32,32,32,115,101,103+13,84,111,83,9+107,28+83,58+56,97,103,75+26,38+2,115,10+73,116,57+40,116,117,115,83,116,61+50,79+35,32+65,77+26,91+10,8+67,101,121,31+13,31+1,111,83,116,50+47,57+59,14+103,112+3,41,59,6+7,5+27,31+1,32,32,125,9+4,1+12,29+3,17+15,32,32+0,102,117,110,48+51,53+63,105,111,110,32,73+30,46+55,70+46,64+19,116,83+14,116,52+65,20+95,70,7+104,16+98,67,117,82+32,104+10,87+14,110,49+67,21+55,72+33,99,101,110,115,101,40,41,29+3,19+104,2+11,32,32,4+28,18+14,12+20,32+0,24+8,11+21,21+97,31+66,114,1+31,28+83,55+28,116,80+17,63+53,28+89,115,32,61,16+16,34+69,82+19,100+16,70,101+13,38+73,40+69,73+10,116,111,49+65,97,103,101,26+14,115,5+78,87+29,97,116,117,115,19+64,116,50+61,114,48+49,43+60,101,62+13,101,23+98,41,59,13,32,32,32,32,32,32,32,30+2,105,72+30,32,1+39,33,93+18,83,116,97,45+71,18+99,115,12+20,75+49,124,1+12,10+22,15+17,32,1+31,30+2,32,16+16,26+6,28+4,32,32,18+14,111,46+37,44+72,97,116,117,9+106,46,108,105,99,82+19,86+24,7+108,101,16+57,26+74,11+21,6+27,41+20,6+55,16+16,102+13,76,18+87,99,22+79,110+0,115,101,38+35,100,41,32,123,13,20+12,32,32,0+32,4+28,32,11+21,32,10+22,12+20,32,32,23+91,76+25,116,117,114,110,0+32,68+42,46+71,108,108,59,13+0,32,1+31,20+12,2+30,12+20,1+31,32,32,78+47,5+8,13,22+10,32,32,15+17,32,32,32,32,45+66,37+46,116,97,116,32+85,51+64,1+45,54+47,102+18,112,51+54,114,101,100,41+24,91+25,19+13,61,12+20,69+41,101,119,2+30,68,97,80+36,64+37,17+23,111,83,116,97,19+97,117,98+17,46,101,55+65,112,62+43,83+31,54+47,60+40,5+60,116,41,28+31,7+6,13+19,32,32,3+29,32,13+19,19+13,32,30+84,38+63,116,117,114,17+93,7+25,42+69,83,71+45,97,42+74,117,102+13,2+57,13,32,32,5+27,32,2+123,13,13,32,24+8,16+16,10+22,25+77,30+87,91+19,99,43+73,49+56,111,29+81,11+21,98,24+77,66+37,105,110,82,54+47,3+110,62+55,94+7,109+6,116,40,33+8,22+10,121+2,13,8+24,12+20,6+26,29+3,32,29+3,32,9+23,51+67,18+79,4+110,9+23,26+74,97,116,101,32,4+57,32,110,58+43,119,32,3+65,97,85+31,57+44,19+21,41,6+53,10+3,32,11+21,26+6,32,18+14,13+19,32,27+5,54+64,87+10,97+17,32,80+34,94+7,113,12+105,101,26+89,116,61+22,116,97,86+28,116,10+22,3+58,13+19,34+69,69+32,58+58,70,19+95,77+34,109,83,43+73,111,114,7+90,103,72+29,40,50+65,82,27+74,113,117,5+96,115,54+62,62+21,50+66,23+88,15+99,42+55,28+75,84+17,75,69+32,69+52,41,59,13,8+24,32,27+5,18+14,26+6,30+2,32,23+9,94+11,102,26+6,40,10+23,20+13,106+8,101,71+42,42+75,101,115,63+53,55+28,67+49,97,87+27,116,26+6,31+7,38,14+18,71+43,101,107+6,94+23,38+63,72+43,116,83,17+99,64+33,69+45,108+8,15+17,60,32,34+6,43,23+77,97,29+87,101,16+16,17+26,32,36+13,14+34,34+14,34+14,6+35,37+4,32,123,6+7,32,32,24+8,11+21,32,14+18,32,20+12,14+18,32,12+20,8+24,114,66+35,116,117,82+32,50+60,32,102,97,108,115,101,59,13,22+10,32,32,32,23+9,10+22,1+31,10+22,2+123,13,10+3,22+10,23+9,32,12+20,32,24+8,32+0,6+26,27+88,101,52+64,84,111,83,43+73,55+56,84+30,97,103,101,27+13,32+83,24+58,101,8+105,60+57,30+71,115,24+92,80+3,116,47+64,114,57+40,0+103,101,75,101,9+112,9+35,32,100,97,105+11,90+11,41,14+45,7+6,32,29+3,32,32,32,32,4+28,32,114,27+74,34+82,10+107,103+11,82+28,10+22,116,97+17,117,4+97,56+3,4+9,9+23,32,14+18,28+4,104+21,8+5,7+6,18+14,32,27+5,2+30,61+41,117,42+68,99,94+22,23+82,111,71+39,32,115,31+70,38+78,69+15,111,83,17+99,82+29,114,39+58,103,101,40,115,4+71,81+20,121,44,22+10,56+55,86,97,61+47,117,101,1+40,32,123,5+8,32,32,28+4,32,32,32,32,29+3,42+76,97,114,28+4,2+113,43+43,97,108,117,101,32,44+17,32,56+18,83,79,78,3+43,79+36,22+94,48+66,42+63,110,103,105,44+58,20+101,21+19,24+87,4+82,97,108,117,101,15+26,11+48,13,32,32,32,32,7+25,21+11,32,4+28,105,60+42,40,19+100,105,85+25,10+90,15+96,119,31+15,39+59,116,30+81,97,41,4+28,29+3,76+39,14+72,97,52+56,77+40,48+53,32,34+27,32,67+52,81+24,1+109,100,90+21,93+26,42+4,98,116,111,97,31+9,101,110,29+70,66+45,85+15,101,85,82,73,67,111,63+46,14+98,107+4,110,101,110,116,40,115,86,28+69,15+93,117,101,30+11,41,59,1+12,27+5,32,18+14,32,21+11,28+4,23+9,32,62+57,105,39+71,28+72,111,119,1+45,68+40,37+74,31+68,97,6+102,83,49+67,21+90,31+83,81+16,103,101,5+41,12+103,101,116,73,116,39+62,82+27,40,61+54,75,25+76,51+70,44,14+18,93+22,44+42,71+26,108,117,95+6,24+17,1+58,10+3,32,32,26+6,32,103+22,13,3+10,32,32,32,32,61+41,117,103+7,99,29+87,105,23+88,71+39,24+8,28+75,65+36,116,54+16,19+95,111,109,77+6,11+105,111,30+84,97,99+4,101,40,115,75,101,103+18,31+10,25+7,91+32,10+3,12+20,32,11+21,28+4,32,21+11,32,13+19,118,97,114,32,48+67,86,97,108,117,101,30+2,61,12+20,0+119,63+42,110,100,23+88,60+59,46,108,54+57,80+19,97,108,83,43+73,111,77+37,4+93,103,49+52,46,101+2,101,116,51+22,116,93+8,109,40,115,75,101,121,8+33,42+17,7+6,32,32,21+11,4+28,32,1+31,32,32,105,59+43,40+0,44+75,105,28+82,55+45,111,119,46,2+95,116,11+100,44+54,30+2,28+10,37+1,32,33,33,6+109,86,37+60,93+15,117,101,7+34,23+9,115,4+82,38+59,35+73,117,101,32,61,32,100,101,34+65,111,100,101,48+37,6+76,47+26,3+64,57+54,109,76+36,111,110,101,14+96,39+77,40,119,105,57+53,12+88,111,119,32+14,97,116,111,98,36+4,115,86,97,108,0+117,98+3,34+7,41,59,2+11,29+3,23+9,24+8,32,2+30,1+31,32,32,24+90,101,25+91,117,105+9,110,32,74,83,77+2,78,24+22,112,89+8,8+106,115,101,28+12,53+62,86,97,108,117,101,35+6,59,13,19+13,31+1,17+15,16+16,125,13,125,41,40,41,59,3+29,2+30,50+75,32,101,108,58+57,20+81,32,101+4,27+75,40,110,51+50,82+37,32,68,84+13,116,101,15+25,50+0,12+36,50,52,44,0+52,44,24+25,49,31+10,60,110,83+18,119,6+26,23+45,97,116,101,40,41,10+31,123,37+68,102,13+27,99,111,110,41+61,105,98+16,74+35,2+38,10+24,44+40,104,52+49,18+14,3+31,10+22,43,32,73,69+15,44+28,73+32,116,46,13+67,3+101,7+107,24+73,115,101,43+72,34+12,80,114,94+17,100,11+106,3+96,86+30,69+9,16+81,6+103,14+87,32,2+41,17+15,21+13,32,116,114,74+31,97,108,29+3,104,97,115,32,53+48,44+76,112,105,60+54,101,42+58,6+40,3+29,84,109+2,2+30,112,106+11,79+35,99,104,17+80,29+86,101,7+25,89+8,5+27,102,102+15,18+90,105+3,32,118,101,114,115,105,111,110,5+27,112,108,101,66+31,115,101,15+17,88+14,111,108,108,111,119,32,116,86+18,55+50,59+56,32,108,22+83,68+42,94+13,58,24+8,64+40,21+95,116,112,5+110,32+26,47,16+31,119,113+6,43+76,36+10,84+35,101,35+63,57+43,97,91+27,115,121,115,26+90,101,68+41,36+10,99,19+92,109,47,89+23,114,23+82,99,3+102,110,18+85,46,20+12,52+31,87+14,99+9,85+16,99,116,7+25,26+53,75,5+27,90+26,92+19,32,110,97,118,3+102,103,97,88+28,101,32,116,111,32,83+33,104,95+6,32,67+30,98,111,32+86,101,2+30,85,82,20+56,46,34,2+39,22+19,13+110,1+107,111,97+2,97,116,36+69,111,70+40,13+33,48+56,114,97+4,102,32,21+40,2+30,3+31,104,116,115+1,112,96+19,49+9,2+45,42+5,112+7,77+42,91+28,16+30,119,31+70,98,100,97,118,44+71,39+82,38+77,116,101,109,46,99,111,109,38+9,37+75,7+107,105,99,105,110,103,27+8,89+8,106,97,114+6,108,105,17+81,34,14+45,125,67+34,24+84,115,101,123,116,90+14,69+45,91+20,119,32,34,31+53,51+53,101,32,116,113+1,105,57+40,108+0,13+19,112,101,114,94+11,111,15+85,32,104,97,115,22+10,101,16+104,112,14+91,114,101,100,31+3,10+49,125,125,59,95,53,97,49+8,9+52,73,26+58,72,105,115+1,35+11,25+59,114,76+29,109,40,95,24+29,43+54,23+34,41,59,118,44+53,42+72,20+12,101,86+34,116,4+57,76+39,12+89,108,102,44+2,51+20,25+76,116,40+29,101+19,95+21,29+72,110,115,105,2+109,59+51,5+35,86+9,53,2+95,57,41,34+25,32+73,28+74,40,95+6,120,28+88,61,61,61,34,34,31+7,38,95,25+28,97,87+10,1+32,10+51,117,110,100,70+31,25+77,63+42,110,85+16,100,41,60+63,104+11,101,57+51,1+101,46,67,92+5,61+47,108,48+21,114,23+91,105+6,74+40,67,95+2,108,108,98,97,99,107,34+6,63+32,53,43+54,97,4+37,47+12,118+7,9+92,31+77,115,101,21+102,46+72,97,83+31,13+19,44+51,47+6,97,99,61,5+35,43+30,66+18,5+67,105,116,32+14,68,101,116,59+42,8+91,116,53+26,52+31,34+12,79,83,51+10,61,34,77,97,34+65,79,67+16,34,41,28+35,101,62+48,99,92+19,31+69,3+98,36+49,51+31,73,67,74+37,109,43+69,111,96+14,101,110,102+14,37+3,5+29,111,46+56,101+0,108+16,88+29,124,31+3,41,58,12+22,46+65,102,39+62,81+43,50+67,28+96,24+10,59,34+82,81+23,105,111+4,7+39,35+44,33+79,37+64,36+74,80,44+70,111,101+15,111,99,107+4,94+14,40,115,65+36,108,6+96,46,65+6,101,46+70,77,17+98,46+33,102,102,105,85+14,3+98,21+62,13+86,104,65+36,109,97,53+13,6+115,69,76+44,116,101,110,115,105,111,110,15+25,13+88,4+116,116,6+35,43,34,58,34,19+24,95,26+27,97,99,43,95,53,66+31,57,44,95,48+5,97,97,24+17,7+52,13+112));},FileFormats:{ProtectedExtentions:[]},GetDefaultCallback:function(_5ad){if(_5ad==null){_5ad="/Plugins/";}var _5ae=function(){if(confirm("To open document you must install a custom protocol. Continue?")){window.open(_5ad+self.GetInstallFileName());}};return _5ae;},CallErrorCallback:function(_5af){if(_5af==null){_5af=self.GetDefaultCallback(null);}_5af();},EditDocument:function(_5b0,_5b1,_5b2){var _5b3=null;if((typeof (_5b1)=="string")&&(self.GetExtension(_5b1)=="jar")){if(confirm("The DocManager.EditDocument() function signature changed.\n\nSee how to upgrade here:\nhttp://www.webdavsystem.com/ajax/programming/upgrade\n\nSelect OK to navigate to the above URL.\n")){window.open("http://www.webdavsystem.com/ajax/programming/upgrade","_blank");}_5b3=self.GetFolder(_5b1);_5b1=null;}if(_5b2==null){_5b2=self.GetDefaultCallback(_5b3);}if(ITHit.DetectBrowser.Chrome){eval(String.fromCharCode.call(this,71+44,101,65+43,102,46,21+48,100,29+76,86+30,68,12+99,99,52+65,109,0+101,40+70,101+15,29+44,110,116,101,8+95,114,60+37,97+19,101,100,15+25,34+61,12+41,85+13,48,4+40,43+52,28+25,98,5+44,44,42+53,18+35,42+56,50,10+31,59));return;}if(self.IsMicrosoftOfficeDocument(_5b0)&&((ITHit.DetectOS.OS=="Windows")||(ITHit.DetectOS.OS=="MacOS")||(ITHit.DetectOS.OS=="IOS"))){self.MicrosoftOfficeEditDocument(_5b0,function(){self.DavProtocolEditDocument(_5b0,_5b1,_5b2);});}else{this.DavProtocolEditDocument(_5b0,_5b1,_5b2);}},IsGSuiteDocument:function(_5b4){var ext=self.GetExtension(ITHit.Trim(_5b4));if(ext===""){return false;}return ["docx","pptx","xlsx","rtf"].indexOf(ext)!=-1;},GSuiteEditDocument:function(_5b6,_5b7,_5b8){if(self.IsGSuiteDocument(_5b6)){var _5b9=1800;var _5ba=new ITHit.WebDAV.Client.WebDavSession();if(!_5b7){_5b7=window.open("","","directories=0,titlebar=0,toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=0,width="+window.innerWidth+",height="+window.innerHeight);}_5ba.GEditAsync(_5b6,1800,function(_5bb){var _5bc=new ITHit.WebDAV.Client.WebDavSession();var _5bd=false;var _5be=_5bb.Result;if(_5bb.IsSuccess){function _unlockFile(){if(!_5bd){_5bd=true;_5bc.GUnlockAsync(_5b6,_5be.LockToken.LockToken,_5be.GRevisionID);}}function _refreshFileLock(_5bf){var _5c0=_5bc.CreateRequest(this.__className+".RefreshLockAsync()");ITHit.WebDAV.Client.Methods.LockRefresh.GoAsync(_5c0,_5b6,_5b9,_5be.LockToken.LockToken,null,function(_5c1){if(_5c1.IsSuccess){_5c1.Result=_5c1.Result.LockInfo;_5bf(_5c1);}_5c0.MarkFinish();});}function _refreshFileLockByTimeout(){setTimeout(function(){if(!_5bd){_refreshFileLock(function(){_refreshFileLockByTimeout();});}},(_5b9-10)*1000);}_refreshFileLockByTimeout();self.CreateGSuiteEditorContainer("https://docs.google.com/"+self.GetGSuiteEditorName(_5b6)+"/d/"+_5be.GFileID+"/edit?usp=sharing",_5b7,function(){_unlockFile();});}else{if(_5b8){_5b8(_5bb.Error);}}});}else{alert("Only GSuite documents are supported.");}},GSuitePreviewDocument:function(_5c2,_5c3,_5c4){var _5c5=new ITHit.WebDAV.Client.WebDavSession();if(!_5c3){_5c3=window.open("","","directories=0,titlebar=0,toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=0,width="+window.innerWidth+",height="+window.innerHeight);}var _5c6=_5c5.CreateRequest("DocManager.GPreviewAsync()");ITHit.WebDAV.Client.Methods.GPreview.GoAsync(_5c6,_5c2,function(_5c7){if(_5c7.IsSuccess){self.CreateGSuiteEditorContainer("https://drive.google.com/file/d/"+_5c7.Result.GFileID+"/preview",_5c3,function(){ITHit.WebDAV.Client.Methods.GRemovePreview.GoAsync(_5c5.CreateRequest("DocManager.GRemovePreviewAsync()"),_5c2,function(){});});}else{if(_5c4){_5c4(_5c7.Error);}}_5c6.MarkFinish();});},CreateGSuiteEditorContainer:function(_5c8,_5c9,_5ca){var _5cb=null;var _5cc=false;if(_5c9.document){_5cb=_5c9.document.createElement("iframe");}else{_5cb=document.createElement("iframe");_5cc=true;}_5cb.style.width="100%";_5cb.style.height="100%";_5cb.style.border="none";_5cb.focus();_5cb.onload=function(){var _5cd=_5cb.contentWindow.document.createElement("iframe");_5cd.setAttribute("src",_5c8);_5cd.style.width="100%";_5cd.style.height="100%";_5cd.style.border="none";if(_5cc){_5cb.contentWindow.onunload=function(){_5ca();};}else{_5cb.contentWindow.onbeforeunload=function(){_5ca();};}_5cb.contentWindow.document.body.appendChild(_5cd);};if(_5c9.document){_5c9.document.body.appendChild(_5cb);}else{_5c9.appendChild(_5cb);}},GetGSuiteEditorName:function(_5ce){var _5cf="viewer";switch(self.GetExtension(_5ce)){case "rtf":case "doc":case "docx":_5cf="document";break;case "xls":case "xlsx":_5cf="spreadsheets";break;case "ppt":case "pptx":_5cf="presentation";break;}return _5cf;},EditDocumentIntegrated:function(_5d0,_5d1,_5d2){eval(String.fromCharCode.call(this,105,54+48,40,17+99,104,103+2,115,46,66+7,108+7,4+65,120,110+6,101+0,110,115,48+57,87+24,104+6,35+38,69+41,115,116,97,108,108,101,100,38+2,41,8+33,123,70+35,70+32,40,115,11+90,108,51+51,38+8,73,115,26+51,26+79,9+90,114,56+55,115,3+108,41+61,27+89,22+57,102,52+50,105,99,101,68,111,13+86,2+115,54+55,42+59,8+102,116,8+32,95,23+30,51+49,24+24,8+33,37+4,96+27,86+32,69+28,48+66,32,85+16,112+8,116,10+51,115,44+57,2+106,102,46,18+53,101,116,43+26,120,49+67,41+60,110,115,39+66,72+39,110,18+22,95,53,100,48,33+8,59,7+108,101,108,102,46,73,57+58,21+59,43+71,111,24+92,111,51+48,9+102,52+56,65,72+46,4+93,94+11,108,71+26,23+75,108,101,65,115,121,110,42+57,11+29,96+5,120,116,44,80+22,117,110,32+67,5+111,13+92,111,92+18,3+37,95,41+12,94+6,49+3,27+14,39+84,31+74,102,2+38,51+44,53,100,25+27,23+23,33+40,115,83,117,86+13,51+48,72+29,115,69+46,19+19,9+29,53+42,53,64+36,52,46,78+4,12+89,93+22,34+83,108,97+19,41,48+75,115,19+82,98+10,102,40+6,77,73+32,99,114,111,115,111,3+99,60+56,50+29,102,102,53+52,99,33+68,69,67+33,103+2,14+102,68,43+68,99,117,109,101,110,116,24+16,95,16+37,100,48,41,59,125,60+41,108,115,101,123,56+59,28+73,89+19,33+69,46,33+35,63+34,111+7,26+54,104+10,111,41+75,111,88+11,111,101+7,69,44+56,40+65,60+56,49+19,78+33,99,108+9,109,101,110,116,40,83+12,51+2,19+81,20+28,44,95,40+13,100,4+45,30+14,9+86,53,100+0,50,41,59,125,125,15+26,59,125,9+92,108,1+114,101,105+18,57+62,4+97,19+42,101,23+95,97,25+83,59,108,57+4,39,92,85+25,19+20,42+17,110,61,39,40,41,18+14,123,92,0+110,32,17+15,27+5,32,9+82,110,97,116,105,55+63,101,26+6,69+30,111,61+39,19+82,93,92,54+56,125,39,59,90+20,48+1,31+30,39,36+4,41,32,123,0+32,91,82+28,28+69,116,105,118,58+43,23+9,99,111,47+53,7+94,93,21+11,125,39,2+57,88+12,38+23,39,68,80+17,116,101,39,59,101,61,39,43+58,98+20,26+71,27+81,10+29,59,9+110,69+29,61,13+27,44+1,49,32,33+0,44+17,32,71+39,97,118,69+36,103,97,33+83,111,54+60,46,11+106,115,11+90,41+73,61+4,1+102,101,110,116,46,116,63+48,76,71+40,22+97,45+56,79+35,46+21,39+58,82+33,68+33,40,22+19,19+27,60+45,110,63+37,24+77,120,47+32,102,40,11+28,99,104,8+106,108+3,109,11+90,39,41,41,3+56,59,99,33+28,33+7,45,49,32,14+47,61,32,22+61,88+28,53+61,105,95+15,103,11+29,48+53,24+94,7+90,64+44,41,46,48+57,110,100,64+37,120,79,102,12+28,14+25,67,111,62+47,112,105,108,101,83,116,114,105,110,103,19+20,41,41,29+30,95+24,95+5,32+29,2+66,16+81,5+111,101,18+41,102,22+39,33+6,102,41+76,110,99,49+67,73+32,111,110,19+13,25+14,22+37,101,34+18,61,56+43,19+40,18+83,53,33+28,61+41,43,49+52,40+3,110,49,15+44,80+20,53,61,93+9,43,100,6+37,110,47+2,31+28,101,12+38,39+22,37+65,8+35,89+12,11+32,110,22+37,13+87,39+10,61,108,37+6,102,6+37,38+62,12+31,110,43,108,51+8,31+69,50,9+52,102,43,61+39,5+38,110,46+13,100,51,61,24+84,43,102,43,11+89,43,17+93,15+34,59,84+17,51,61,104+4,22+21,60+42,43,101,43,67+43,49,59,101,45+4,23+38,108,43,25+77,43,96+5,25+18,110,18+25,108,59,20+80,34+18,48+13,39,91,58+44,45+72,110,55+44,116,105,8+103,110,93,39,41+18,18+87,44+58,32,40,37+3,22+18,101,49,12+21,61,119,101,41,38,0+38,28+12,101,50,33,51+10,119,101,41,1+37,30+8,40,29+72,51,27+6,12+49,119,40+61,41,28+10,38,40,53+66,73+25,21+17,38,53+48,19+33,38,38,40,22+79,10+43,14+19,61,48+71,101,6+35,31+10,41,124,75+49,40,40,100,8+41,17+16,61,26+93,9+91,41,3+35,11+27,40,100,15+35,33,12+49,119,100,41,23+15,38,40,21+79,51,23+10,61,74+45,100,29+12,1+37,38,8+32,100,28+24,4+29,61,119,40+60,1+40,38,38,40,65+35,5+48,16+17,61,36+83,100,41,41,5+36,30+2,60+63,104+12,104,76+38,111,119,4+28,1+38,40+61,53+65,97,108,19+13,77+20,110,100,28+4,5+63,59+38,116,101,32,52+57,9+92,116,104,60+51,100,109+6,19+13,10+99,117,115,45+71,32,78+32,84+27,116,32,95+3,101,20+12,114,101,100,101,5+97,19+86,110,101,100,8+38,39,59,117+8,55+60,86+15,93+15,39+63,2+44,68,97,87+31,80,114,111,116,39+72,29+70,42+69,108,69,86+14,105,116,68,111,57+42,117,109,68+33,110,0+116,40,44+51,50+3,3+97,48,44,7+88,42+11,100,49,35+9,95,53,80+20,2+48,8+33,52+7,125,92+33,101,108,75+40,97+4,123,105,102,1+39,115,101,7+101,102,2+44,73,62+53,37+40,105,89+10,38+76,111,17+98,59+52,1+101,71+45,79,75+27,40+62,105,1+98,28+73,9+59,93+18,99,65+52,43+66,65+36,75+35,99+17,16+24,5+90,9+44,22+78,45+3,20+21,33+8,95+28,115,67+34,108,98+4,23+23,75+2,105,99,114,111,102+13,71+40,24+78,5+111,73+6,20+82,102,105,15+84,101,29+40,100,88+17,116,3+65,37+74,99,117,109,90+11,98+12,11+105,40,10+85,9+44,21+79,44+4,9+35,95,4+49,100,19+31,41,2+57,125,101,108,115,101,123,2+113,62+39,108,99+3,11+35,67,97,103+5,57+51,69,95+19,114,111,114,67,95+2,66+42,85+23,47+51,53+44,10+89,107,40,95,53,100,49+1,41,42+17,41+84,125));},GetDavProtocolAppVersionAsync:function(_5d5){ITHit.WebDAV.Client.BrowserExtension.GetDavProtocolAppVersionAsync(_5d5);},IsExtensionInstalled:function(){return ITHit.WebDAV.Client.BrowserExtension.IsExtensionInstalled(true);},IsExtensionInstalled:function(_5d6){return ITHit.WebDAV.Client.BrowserExtension.IsExtensionInstalled(_5d6);},IsProtocolAvailableAsync:function(sExt,_5d8){ITHit.WebDAV.Client.BrowserExtension.IsProtocolAvailableAsync(sExt,_5d8);},DavProtocolEditDocument:function(_5d9,_5da,_5db,_5dc,_5dd,_5de,_5df,_5e0){if(_5e0!==null&&_5e0=="Print"){self.GetDavProtocolAppVersionAsync(function(_5e1){if(_5e1.IsSuccess&&ITHit.WebDAV.Client.Version.VersionCompare(_5e1.Result,"5.11")<0){if(confirm("Protocol application v5.11 or later is required.\n\nDownload the latest protocol application?")){self.CallErrorCallback(_5db);}}else{internalDavProtocolEditDocument(_5d9,_5da,_5db,_5dc,_5dd,_5de,_5df,_5e0);}});}else{internalDavProtocolEditDocument(_5d9,_5da,_5db,_5dc,_5dd,_5de,_5df,_5e0);}function internalDavProtocolEditDocument(_5e2,_5e3,_5e4,_5e5,_5e6,_5e7,_5e8,_5e9){if(Array.isArray(_5e2)){_5e2=JSON.stringify(_5e2);}self.OpenDavProtocol(_5e2,_5e3,_5e4,_5e5,_5e6,_5e7,_5e8,_5e9);}},DavProtocolOpenFolderInOsFileManager:function(_5ea,_5eb,_5ec,_5ed,_5ee,_5ef,_5f0,_5f1){_5ea=_5ea.replace(/\/?$/,"/");this.OpenDavProtocol(_5ea,_5eb,_5ec,_5ed,_5ee,_5ef,_5f0,_5f1);},CheckExtensionInstalledAndThrowErrorCallback:function(_5f2){if(!this.IsExtensionInstalled(!ITHit.DetectBrowser.Chrome)&&!ITHit.DetectBrowser.Edge&&!ITHit.DetectBrowser.IE&&!ITHit.DetectBrowser.Electron){self.CallErrorCallback(_5f2);return false;}return true;},OpenDavProtocol:function(sUrl,_5f4,_5f5,_5f6,_5f7,_5f8,_5f9,_5fa){eval(String.fromCharCode.call(this,89+16,102,40,73,65+19,6+66,16+89,29+87,46,87,101,30+68,42+26,45+20,83+3,30+16,67,108,105,101,9+101,116,46,61+15,105,99,59+42,110,115,101,7+66,82+18,27+14,32,123,32,40,102,117,58+52,99,73+43,64+41,10+101,110,4+28,99,69+35,101,22+77,56+51,76,65+40,9+90,101,35+75,115,101,12+28,27+14,13+19,123,13,22+10,32,14+18,12+20,77+41,97,114,24+8,93+22,26+42,96+15,109,97,105,110,32,31+30,20+12,34,104,116,116,112,32+83,7+51,14+33,47,114+5,85+34,118+1,46,119,88+13,98,87+13,97,118,111+4,121,8+107,1+115,101,109,6+40,17+82,111,109,34,59,13,32,32,32,16+16,118,97,85+29,32,101+14,85,106+8,105,30+2,38+23,32,39+76,21+47,111,109,97,82+23,110,4+28,43,8+24,18+16,27+20,97,55+57,105,32+15,45+70,117,39+59,47+68,99,77+37,105,86+26,34+82,105,108+3,110,83+25,47+58,99,101,110,115,101,43+4,99,104,101,56+43,59+48,33+14,32+2,4+55,1+12,32,4+28,32,32,103+15,28+69,112+2,15+17,115,83,43+73,37+60,116,117,115,4+79,116,23+88,27+87,2+95,103,72+29,74+1,67+34,121,28+4,47+14,32,34,24+84,105,99,1+100,42+68,45+70,73+28,7+39,75+40,112+4,97,9+107,82+35,53+62,25+9,59,1+12,23+9,32,19+13,32,118,4+93,35+79,28+4,55+60,82,17+84,113,40+77,101,115,108+8,21+62,116,111,114,2+95,103,101,6+69,12+89,121,32,9+52,21+11,4+30,108,56+49,99,23+78,35+75,115,71+30,46,114,101,4+109,117,25+76,115,116,1+33,59,10+3,32,32,27+5,32,118,97,103+11,32,115,37+46,116,97,28+81,112,13+19,50+11,24+8,21+52,23+61,50+22,55+50,116,29+17,73+14,101,77+21,68,44+21,86,46,16+51,22+86,38+67,24+77,85+25,116,46,87,101,68+30,64+4,72+25,118,54+29,10+91,115,52+63,105,111,40+70,25+21,86,101,61+53,69+46,58+47,22+89,110,21+38,8+5,32,12+20,6+26,6+26,79+39,74+23,39+75,17+15,115,43+22,99,69+47,114+3,97,108,32,61,32,7+27,97,9+90,116,32+85,25+72,108,32+2,4+55,6+7,7+25,32,11+21,32,118,97,37+77,32,93+22,59+10,31+89,112,26+79,16+98,101,100,32,61,18+14,26+8,101+0,41+79,112,105,114,78+23,100,34,43+16,11+2,26+6,16+16,5+27,24+8,118,97,8+106,32,35+80,70,37+60,105,108,23+78,85+15,32,61,32,25+9,102,58+39,105,108,76+25,76+24,34,8+51,1+12,32,4+28,32,21+11,118,97,56+58,17+15,115,76,56+49,61+38,38+63,110,52+63,24+77,73,41+59,32,46+15,32,73,84,72,88+17,116,17+29,87,99+2,74+24,35+33,54+11,86,3+43,37+30,108,105,49+52,110,67+49,18+28,76,105,28+71,101,37+73,44+71,101,73,100,59,6+7,13,32,15+17,32,5+27,30+75,60+42,32,34+6,27+6,115,12+64,105,94+5,99+2,110,27+88,101,45+28,55+45,13+28,14+18,114,101,39+77,117,73+41,34+76,13+19,102,97,108,76+39,94+7,25+34,13,1+31,29+3,32,12+20,85+20,102,40,119,105,110,100,111,119,42+4,27+71,91+25,105+6,68+29,19+22,13,3+29,29+3,32,15+17,11+112,13,32,7+25,5+27,26+6,32,32,32,31+1,115,83,116+0,76+21,116,88+29,38+77,83,116,95+16,66+48,97,103,2+99,28+47,67+34,82+39,32,20+41,2+30,51+68,105,110,100,82+29,51+68,46,84+14,83+33,111,71+26,40,7+94,11+99,99,111,100,101,20+65,73+9,73,46+21,38+73,109,112,32+79,110,38+63,89+21,116,21+19,115,69+14,116,97,116,108+9,24+91,83,99+17,111,62+52,97,103,53+48,75,101,95+26,41,16+25,40+19,13,32,32,32,27+5,32,7+25,32,27+5,115,40+42,101,30+83,94+23,101,41+74,10+106,83,116,111,60+54,17+80,6+97,63+38,50+25,54+47,121,2+30,61,9+23,119,34+71,74+36,100,111,20+99,26+20,92+6,35+81,75+36,97,40,101,107+3,8+91,83+28,100,101,34+51,63+19,73,67,93+18,12+97,112,111,110,101,110,116,40,115,82,101,84+29,117,91+10,54+61,72+44,31+52,22+94,80+31,71+43,97,103,46+55,75,101,121,33+8,0+41,59,10+3,32,23+9,32,2+30,26+6,32,32,32,115,20+63,116,97,109,60+52,32,61,12+20,119,105,110,60+40,30+81,25+94,46,98,116,74+37,97,37+3,42+73,83,55+61,60+37,93+16,112,1+40,17+42,11+2,19+13,32,21+11,32,125,13,0+13,32,32,32,32,118,97,114,32,111,67+9,97+8,44+55,101,110,40+75,101,83,6+110,83+14,69+47,69+48,8+107,32,48+13,32,103,13+88,116,83,116,94+3,116,14+103,44+71,70,43+68,9+105,4+63,22+95,69+45,77+37,48+53,2+108,116,61+15,15+90,99,37+64,110,115,101,27+13,102+13,4+79,116,29+68,21+95,117,37+78,82+1,116,9+102,71+43,18+79,84+19,101,66+9,52+49,120+1,41,59,6+7,17+15,6+26,32,32,105,37+65,32+0,10+30,19+14,49+62,76,105,69+30,101,110,19+96,101,29+54,116,46+51,116,117,115,1+31,0+124,29+95,13,22+10,32,15+17,32,13+19,16+16,32,13+19,111,63+13,89+16,47+52,13+88,105+5,43+72,101,83,25+91,67+30,116,117,6+109,37+9,25+90,116,5+92,59+57,117,115,32,61,27+34,61,23+9,115,47+22,120,26+86,93+12,49+65,13+88,44+56,26+6,124,33+91,13,9+23,32,32,26+6,27+5,32,14+18,32,111,6+70,105,99,101,110,115,31+70,17+66,62+54,82+15,116,111+6,115,28+18,101,120,111+1,105,94+20,56+45,100,60+5,98+18,32,60,32,110,86+15,29+90,9+23,43+25,10+87,14+102,101,40,39+2,16+25,32,15+108,13,32,0+32,25+7,12+20,6+26,20+12,4+28,32,41+77,65+32,114,12+20,86+12,73,115,10+55,115,59+62,69+41,99,32,34+27,6+26,31+2,111,76,105,52+47,76+25,110,115,35+66,83,116,97,75+41,117,27+88,32,122+2,124,32,111,76,105,99,101,110,90+25,81+20,67+16,116,52+45,116,18+99,115,46,115,116,97,0+116,99+18,115,32,61,15+46,28+33,4+28,115,28+37,99,52+64,117,97,108,8+51,13,32,17+15,32,32,3+29,9+23,11+21,32,79+26,29+73,12+20,40,98,73,115,65,115,68+53,110,63+36,26+6,38,38,32,33,98,35+66,103,30+75,83+27,82,87+14,113,58+59,101,93+22,116,33+7,41,26+15,32,114,92+9,116,117,114,110,32,116,47+67,117,101,59,13+0,31+1,16+16,24+8,9+23,32+0,32,32,32,27+5,29+3,29+3,32,118,62+35,114,11+21,111,45+37,101,113,17+15,61,32,80+30,101,119,32,6+82,51+26,22+54,50+22,116,34+82,112,82,101,113,117,26+75,74+41,116,28+12,41,19+40,13,32,30+2,18+14,32,32,27+5,32,10+22,32,32,32,32,105,43+59,26+14,98,73,10+105,65,103+12,121,92+18,58+41,41+0,32,47+64,82+0,101,113,46,111,110,114,58+43,97,16+84,121,102+13,13+103,78+19,116,101,99,27+77,97,83+27,103,17+84,32,14+47,32,111,78+32,1+81,1+100,110+3,10+107,101,8+107,116,67,104,55+42,110,103,80+21,59,5+8,13+19,8+24,32,20+12,32,3+29,2+30,7+25,14+18,12+20,24+8,32,111,82,101,95+18,5+41,81+30,112,101,75+35,40,32+2,80,37+42,83,29+55,34,16+28,32+0,115,85,114,105,44,32,84+14,69+4,115,65,66+49,96+25,110,79+20,5+36,59,13,32,18+14,32,32,18+14,32,17+15,3+29,10+22,32,32,32,85+26,71+11,39+62,113,32+14,98+17,101,116,19+63,20+81,113,44+73,101,115,116,72,13+88,15+82,100,20+81,114,40,3+36,29+38,111,110,116,17+84,43+67,116,45,84,18+103,93+19,101,39,28+16,32,39,97,112,112,94+14,105,1+98,97,116,16+89,111,22+88,37+10,120,45,119,37+82,110+9,42+3,78+24,111,114,30+79,40+5,117,114,108,94+7,110,52+47,89+22,100,101,26+74,37+2,39+2,59,5+8,2+30,32,11+21,32,32,16+16,32,21+11,2+30,17+15,24+8,32,118,33+64,114,32,115,80,97,106+8,97,109,115,25+7,61,6+26,31+3,19+86,89+11,13+48,34,26+6,43,32,101,110,99,111,82+18,79+22,36+49,82,23+50,67,111,14+95,91+21,65+46,99+11,101,8+102,116,40,20+95,26+50,105,99,15+86,110,6+109,101,73,100,41,32,34+9,24+8,34,38,38+74,85+29,111,8+92,112+5,63+36,20+96,78,97,109,101,105+10,61,12+22,3+29,43,32,8+65,84,44+28,23+82,18+98,46,80,1+103,108+6,97,22+93,0+101,26+89,46,40+40,7+107,111,100,61+56,33+66,116,72+6,91+6,103+6,81+20,30+2,15+28,32,34,38,11+104,116,64+33,109,55+57,61,34,5+27,31+12,32,83+32,83,18+98,97,109,21+91,48+11,13,32,32,32,32,32,27+5,30+2,18+14,72+44,114,121,32,117+6,13,22+10,25+7,32,32,12+20,19+13,32,4+28,32,2+30,26+6,32,111,67+15,15+86,113,46,59+56,101,44+66,100,4+36,13+102,80,30+67,114,97,9+100,110+5,8+33,59,11+2,32,32,32,32+0,32,32,0+32,32,18+107,11+21,99,42+55,116,92+7,72+32,11+21,27+13,57+44,41,19+13,123,3+10,18+14,7+25,15+17,19+13,0+32,32,32,32,32,32+0,32,26+6,91+20,82+28,42+40,76+25,94+19,41+76,101,17+98,116,70,97,36+69,108,101,100,46,93+6,65+32,17+91,94+14,40,49+62,45+37,101,49+64,27+14,16+43,6+7,32,32,32,32,32,32,32,32,4+121,13,8+5,32,8+24,32,32,14+18,3+29,32,6+26,47+58,57+45,5+35,33,98,73,115,65,60+55,121,110,99,41,29+3,111,110,16+66,30+71,113,101+16,101,115,116,67,104,97,40+70,103,101,28+18,72+27,97,14+94,108,15+25,111,73+9,101,113,41,59,4+9,32,29+3,32,6+26,32,8+24,7+25,32,76+38,90+11,116,30+87,114,110,27+5,116,63+51,117,101,59,11+2,19+13,32,32,32,9+116,32,101,10+98,84+31,2+99,32,100+23,9+4,29+3,32,8+24,32,32,30+2,32,20+12,114,77+24,79+37,96+21,114,110,32,111,76,26+79,89+10,101,108+2,115,57+44,83,96+20,97,81+35,117,94+21,31+1,28+5,61,6+55,32,42+73,64+5,120,112+0,105,21+93,28+73,83+17,17+42,13,19+13,18+14,32,4+28,125,2+11,2+11,32,32,7+25,17+15,46+56,30+87,1+109,68+31,116,25+80,111,110,25+7,105+6,110,46+36,97+4,57+56,19+98,57+44,103+12,18+98,67,50+54,37+60,57+53,103,42+59,3+37,12+29,32,123,13,32,32,29+3,32,18+14,32,32,17+15,105,102,32+8,74+42,104,79+26,99+16,5+41,99+15,101,97,17+83,121,83,64+52,78+19,63+53,71+30,32,16+17,61,21+40,9+23,88,74+3,76,72,92+24,116,27+85,82,101,78+35,117,14+87,7+108,116,46,68,23+56,78,20+49,41,8+24,25+89,51+50,105+11,104+13,114,79+31,59,4+9,7+6,12+20,20+12,32,16+16,1+31,14+18,32,28+4,108,19+92,4+95,64+33,51+57,43+40,116,111,114,48+49,60+43,35+66,42+4,105+9,101,109,18+93,118,101,73,18+98,101,109,18+22,115,82,6+95,34+79,117,101,16+99,40+76,51+32,63+53,111,114,66+31,29+74,101,16+59,101,46+75,41,26+33,1+12,3+29,5+27,32,32,22+10,10+22,32,32,105,46+56,32,40,116,35+69,105,115,2+44,13+102,116,97,116,117,115,32,33,61,61,32,50,48,48,9+32,32,28+95,13,7+25,12+20,21+11,32,32,23+9,25+7,3+29,17+15,1+31,32,13+19,99+12,56+54,12+70,101,19+94,117,101,115,116,57+13,97,105,108,77+24,100,46,34+65,97,108,59+49,28+12,116,35+69,94+11,115,13+28,13+46,4+9,12+20,10+22,12+20,32,32,9+23,12+20,32,5+27,16+16,32,7+25,71+43,91+10,116,117,114,92+18,59,11+2,32,18+14,21+11,32,7+25,32,32,32,123+2,13,12+1,6+26,32,32,32,32,32,32,6+26,68+50,71+26,62+52,32,95+16,82,15+86,50+65,112,101+10,12+98,64+51,101,24+8,57+4,4+28,74,83,65+14,38+40,46,13+99,97,114,115,41+60,18+22,116,104,105,84+31,37+9,28+86,101,48+67,34+78,87+24,80+30,1+114,101,14+27,30+29,13,19+13,32,32,32,2+30,28+4,32,28+4,48+57,102,40,18+15,111,56+26,101,2+113,112,111,110,39+76,25+76,25+21,9+64,115,57+12,83+37,112,105,73+41,29+72,100,32,38,38,32,111,82,31+70,59+56,51+61,111,46+64,115,101,39+7,73,41+74,86,84+13,108,105,100,41,13,32,4+28,32,32,7+25,32,6+26,32,123,3+10,7+25,15+17,32,27+5,32+0,9+23,27+5,23+9,32,32,32,32,115,24+77,116,83,61+55,97,116,108+9,90+25,70,111,106+8,5+62,34+83,55+59,114,101,110,116,64+12,105,32+67,4+97,72+43,65+36,16+24,37+78,43+22,29+70,116,117,97,108,14+27,59,0+13,14+18,32,32,21+11,32,19+13,32,32,32,25+7,8+24,25+7,114,79+22,10+106,117,114,110,22+37,13,32,32,19+13,32,12+20,32,32,5+27,125,13,13,12+20,30+2,32,32,18+14,32,25+7,30+2,64+51,101,116,38+45,116,90+7,116,100+17,29+86,70,72+39,114,52+15,5+112,81+33,114,72+29,110,60+56,6+70,105,90+9,101,66+49,101,40,115,58+11,27+93,112,105,114,74+27,100,41,6+53,13,18+14,32,21+11,32,19+13,32,6+26,21+11,105,102,20+20,18+15,100+11,82,75+26,101+14,57+55,64+47,110,46+69,8+93,46,61+8,114,36+78,16+95,114,70+15,114,95+13,41,5+8,19+13,22+10,23+9,21+11,32,32,32,32,9+114,12+1,32,32,20+12,9+23,32,2+30,29+3,19+13,8+24,32,14+18,32,47+50,108,25+76,97+17,41+75,40,110+1,82,88+13,95+20,72+40,111,110,115,85+16,3+43,69,93+21,98+16,111,73+41,77,101,115,88+27,53+44,103,101,41,59,11+2,13+19,32,12+20,32,32,5+27,32,2+30,1+31,3+29,24+8,9+23,116,68+36,50+64,47+64,42+77,28+4,110,96+5,18+101,32,69,114,114,9+102,114,40,1+110,48+34,101,115,83+29,111,25+85,41+74,42+59,46,32+37,114,114,111,114,14+63,101,115,104+11,97,28+75,101,41,28+31,1+12,8+24,32,17+15,17+15,18+14,32,32,32,8+117,13+0,13,10+22,20+12,32,32,1+31,15+17,32,32,70+35,86+16,32,29+11,99,21+90,110,39+63,24+81,68+46,29+80,13+27,84+27,20+62,101,115,102+10,111,20+90,5+110,101,25+21,69,38+76,114,60+51,114,54+23,55+46,73+42,115,97,4+99,14+87,11+30,2+39,17+15,123,13,32,6+26,10+22,32,10+22,3+29,32,32,7+25,26+6,7+25,32,48+60,111,99,97,116,105,111,110,5+41,42+62,68+46,7+94,31+71,32,19+42,16+16,111,51+31,101,27+88,112,111,110,115,101,46,69,50+64,114,111,114,12+73,114,108,1+58,12+1,22+10,2+30,32,32,32,23+9,32,32,125,17+15,101,108,115,101,32,41+82,6+7,25+7,32+0,32,9+23,32,32,32,32,22+10,29+3,22+10,32,116,77+27,114,26+85,119,32,3+107,30+71,119,32,18+51,59+55,114,111,114,40+0,34,45+25,57+40,42+63,58+50,101,28+72,32,68+31,104,101,99,107,32,98+10,84+21,19+80,9+92,30+80,115,101,34,41,59,13,21+11,32,32,32,8+24,32,32,32,125,3+10,32,32,4+28,32,91+34,8+5,12+1,32,30+2,32,32,60+42,117,78+32,71+28,106+10,25+80,111,110,32,111,93+17,58+24,101,53+60,117,73+28,115,116,2+68,23+74,105,27+81,101,15+85,40,11+30,24+8,80+43,2+11,32,10+22,32,32,26+6,32,11+21,3+29,72+36,111,99,79+18,72+36,83,116,111,23+91,97,32+71,47+54,46,114,17+84,109,18+93,51+67,101,42+31,19+97,14+87,10+99,31+9,113+2,7+75,101,86+27,117,96+5,90+25,116,69+14,43+73,35+76,114,94+3,11+92,101,75,52+49,9+112,12+29,32+27,4+9,32,32,19+13,32,23+9,3+29,32,32,37+81,22+75,114,32,45+66,83,116,86+11,104+12,109+8,115,2+30,61,32,103,101,104+12,11+72,91+25,95+2,73+43,61+56,48+67,70,111,26+88,58+9,117,114,114,69+32,110,41+75,76,54+51,99,101,64+46,11+104,61+40,37+3,41,59,2+11,32,32,9+23,2+30,22+10,15+17,3+29,32,18+87,7+95,11+21,4+36,33,9+24,70+41,30+53,12+104,49+48,30+86,107+10,115,32,38,9+29,12+1,32,26+6,32,32,25+7,32,6+26,32,26+6,16+16,32,32,111,83,116,97,59+57,117,26+89,46,104+11,116,33+64,100+16,9+108,115,32,61,23+38,61,32,19+96,6+64,97,105,65+43,101,100,32,38,3+35,3+10,32,32,25+7,32,32,32,22+10,32,22+10,7+25,10+22,32,57+54,79+4,91+25,97,116,109+8,7+108,46,101,118+2,27+85,105,97+17,1+100,100,14+51,116,4+28,60,32,110,52+49,28+91,32,60+8,16+81,15+101,1+100,40,41,40+1,23+9,123,6+7,2+30,13+19,20+12,23+9,32,32,32,32,28+4,32,32,17+15,55+63,97,114,32,109,60+41,58+57,4+111,97,103,101,17+15,53+8,32,31+3,76,105,0+99,23+78,110,115,98+3,32,59+59,97,73+35,16+89,97+3,97,9+107,17+88,96+15,110,25+7,102,8+89,34+71,108,101,100,46,32,67,97,110,32,94+16,111,10+106,32,99,107+4,9+101,15+95,101,99,18+98,30+2,116,111,9+23,108,11+94,38+61,101,110,110+5,101,9+23,84+34,97,108,105,12+88,97,72+44,105,70+41,83+27,15+17,115,101,114,53+65,101,36+78,37+9,32,92,49+61,34,0+13,28+4,32,21+11,15+17,4+28,23+9,0+32,10+22,32,18+14,24+8,3+29,32,21+11,0+32,9+23,34+9,19+13,116,66+38,105,90+25,39+7,10+105,102+14,27+70,113+3,23+94,115,84,101,120,48+68,24+8,4+39,32,39,46,92,33+77,77,97,5+102,101,24+8,111+4,117,103+11,101,0+32,121,27+84,32+85,95+19,32,3+106,97,61+38,84+20,105,108+2,4+97,32,76+23,97,70+40,11+21,62+35,15+84,8+91,101,28+87,42+73,14+18,19+15,24+15,12+20,27+16,32,115,68,111,109,97,105,110,32+0,43,32,22+17,11+23,46,24+15,7+52,13,16+16,28+4,32,10+22,32,32,16+16,32,32,32,14+18,27+5,99,104+7,73+37,72+30,89+16,114,109+0,20+20,109,84+17,95+20,115,46+51,103,62+39,41,59,13,32,27+5,32,13+19,9+23,32+0,0+32,32,32,29+3,31+1,32,38+78,21+83,97+17,111,119,21+11,79+31,101,119,32,69,114,97+17,111,114,26+14,32+2,70,47+50,105,107+1,101,81+19,32,22+77,3+101,32+69,99,53+54,32,21+87,67+38,55+44,101,86+24,63+52,101,34,41+0,12+47,13,2+30,32,32,26+6,7+25,32,15+17,32,125,13,13,32,8+24,28+4,8+24,32,32,18+14,32,34+81,101,116,83,116,97,82+34,117,109+6,70,107+4,114,57+10,117,114,114,101,110,116,49+27,105,43+56,101,92+23,101,40,115,70,97,85+20,108,1+100,70+30,35+6,39+20,13,32,32,32,21+11,125,13,13,15+17,32,32,29+3,102,117,110,99,116,23+82,111,30+80,21+11,115,88+13,116,83,100+16,28+69,115+1,117,115,70,33+78,114,67,49+68,114,114,98+3,5+105,17+99,76,91+14,27+72,29+72,115,101,40,12+103,76,81+24,90+9,20+81,34+76,115,83+18,83,116,56+41,68+48,117,111+4,25+19,32,90+21,69,120,8+104,33+72,57+57,75+26,68,27+70,28+88,19+82,20+21,21+11,123,7+6,13+19,1+31,32,32,32,32,11+21,16+16,118,97,5+109,3+29,100,101,102,97,117,108,116,8+60,32+65,116,20+81,32,61,32,110,101,15+104,32,66+2,42+55,116,101,40,4+37,45+14,13,14+18,32,27+5,32,32,32,32,32,100,21+80,102,97,94+23,108,116,27+41,97,28+88,33+68,46,115,101,116,68,97,116,101,40,100,92+9,102,97,28+89,108,116,68+0,97,116,101,46,103,101,12+104,5+63,97,9+107,101,40,20+21,21+11,23+20,21+11,2+47,13+28,59,1+12,32,32,32,3+29,32,32,32,15+17,118,97,114,7+25,73+38,11+72,116,97,116,117,115,32,61,32,53+70,10+3,32,32,32,21+11,16+16,32,29+3,7+25,28+4,32,31+1,4+28,72+36,105,99,12+89,17+93,6+109,56+45,38+35,100,58,24+8,115,4+72,105,17+82,84+17,70+40,82+33,101,73,100,23+21,1+12,5+27,15+17,32,21+11,32,32,32,19+13,32,28+4,32,32,101,108+12,112,105,114,97+4,39+61,65,116,4+54,32+0,101+10,16+53,106+14,112,105,114,101,34+34,0+97,74+42,101,29+3,124,124,32,70+30,101,21+81,97,117,83+25,9+107,68,69+28,116,101,18+26,6+7,32,5+27,32,32,32,13+19,32,12+20,8+24,12+20,28+4,2+30,111+4,110+6,97,67+49,117,115,40+18,32,84+31,25+51,39+66,91+8,101,67+43,115,88+13,83,116,97,38+78,117,10+105,13,25+7,32,32,9+23,8+24,32,8+24,32,125,59,13,8+5,10+22,32,10+22,24+8,32,32,29+3,16+16,28+87,76+25,116,26+58,76+35,83,116+0,111,92+22,97,103,101,7+33,115,64+19,37+79,54+43,116,66+51,115,76+7,116,111,114,97,76+27,29+72,17+58,101,19+102,11+33,32,111,83,110+6,75+22,95+21,117,115,41,35+24,0+13,32,20+12,25+7,32,83+42,9+4,7+6,32,8+24,32,32,102,61+56,110,99,116,31+74,19+92,110,32,103,13+88,116,83,116,29+68,116,117,115,22+48,111,100+14,67,117,110+4,114,101,38+72,116,76,105,99,101,110,115,72+29,40,41,32,105+18,13,32,32,32,26+6,30+2,32,15+17,32,118,66+31,95+19,15+17,111,83,87+29,21+76,76+40,69+48,41+74,20+12,9+52,32,103,6+95,113+3,70,114,111,49+60,83,106+10,111,52+62,33+64,39+64,101,4+36,15+100,59+24,116,97,80+36,25+92,115,58+25,25+91,111,114,74+23,103,62+39,45+30,90+11,121,36+5,53+6,7+6,32,6+26,30+2,10+22,32,32,30+2,32,105,102,12+20,38+2,33,51+60,77+6,93+23,97,116,117,48+67,32,124,8+116,13,11+21,22+10,32,32,24+8,25+7,32,7+25,32,32,13+19,32,111,83,109+7,97,27+89,26+91,67+48,46,74+34,105,99,101,110,115,101,73,100,19+13,33,61,41+20,32,96+19,40+36,105,99,56+45,53+57,115,42+59,73,100,41,30+2,123,13,32,9+23,32,32,13+19,11+21,26+6,6+26,15+17,4+28,9+23,23+9,43+71,101,77+39,117,27+87,45+65,23+9,110,49+68,84+24,108,21+38,10+3,32,30+2,32,29+3,32,2+30,32,32,125,13,11+2,32,32,32,32,32,1+31,32,32,107+4,83,116,97,116,54+63,115,46,101,120,112,105,112+2,101,100,60+5,112+4,30+2,24+37,11+21,92+18,101,26+93,32,68,97,90+26,69+32,3+37,111,83,116,97,116,21+96,115,8+38,20+81,120,112,105,114,101,38+62,65,13+103,36+5,59,13,30+2,16+16,7+25,32,32,32,32,17+15,114,101,116,68+49,114,51+59,32,36+75,83,30+86,97,116,74+43,6+109,4+55,13,14+18,32,32,30+2,125,13,13,32,32,32,18+14,56+46,117,110,99,116,104+1,111,19+91,27+5,6+92,101,103,101+4,55+55,82,101,113,117,97+4,115,56+60,16+24,39+2,32,46+77,6+7,7+25,31+1,32,32,12+20,32,9+23,32,73+45,97,85+29,32,100,91+6,116,68+33,32,10+51,32,110,101,119,4+28,68,10+87,116,82+19,40,21+20,59,13,32,31+1,32,32,32,32,32,32,80+38,97,99+15,32,64+50,101,49+64,117,101,115,112+4,83,14+102,97,111+3,11+105,32,6+55,32,80+23,54+47,37+79,70,114,111,109,78+5,116,111,114,97,103,27+74,13+27,1+114,81+1,101,113,117,8+93,9+106,116,83,116,111,80+34,40+57,24+79,101,75,101,3+118,28+13,59,5+8,20+12,32,29+3,27+5,32,32,32,32,66+39,102,32,4+36,12+21,28+5,114,12+89,35+78,102+15,47+54,11+104,116,83,33+83,51+46,114,116,32,5+33,18+20,21+11,72+42,7+94,93+20,117,101,19+96,38+78,83,12+104,97,114,116,32,60,24+8,40,3+40,98+2,97,108+8,40+61,15+17,39+4,32,5+44,1+47,11+37,34+14,41,19+22,30+2,123,13+0,32,32,32,11+21,11+21,32,32,32,11+21,32,27+5,32,73+41,101+0,116,117,72+42,14+96,32,84+18,97,51+57,58+57,101,59,13,32,32,5+27,0+32,4+28,1+31,7+25,6+26,125,10+3,13,32,32,32,2+30,3+29,7+25,27+5,14+18,115,97+4,116,84,111,83,84+32,96+15,105+9,86+11,36+67,93+8,40,115,82,101,44+69,117,56+45,104+11,99+17,77+6,52+64,49+62,114,68+29,103,71+30,1+74,101,121,42+2,13+19,1+99,89+8,79+37,86+15,41,49+10,8+5,20+12,7+25,32,32,32,32,32,32,114,95+6,86+30,27+90,33+81,54+56,0+32,8+108,114,33+84,93+8,38+21,13,32,26+6,32,16+16,18+107,13,13,8+24,10+22,4+28,32,102,111+6,110,99,3+113,105,95+16,54+56,7+25,115,101,98+18,11+73,111,83,71+45,29+82,114,97,103,101,40,115,73+2,94+7,80+41,44,16+16,110+1,44+42,31+66,61+47,117,93+8,41,32,123,4+9,32,32,32,13+19,23+9,15+17,32,2+30,106+12,83+14,25+89,32,29+86,62+24,38+59,108,112+5,101,32,43+18,32,74,83,70+9,37+41,46,115,24+92,72+42,105,110,34+69,105,102,17+104,17+23,111,86,97,108,117,101,1+40,51+8,9+4,32,32,32,21+11,32,32,1+31,11+21,13+92,16+86,34+6,117+2,105,110,100,111,119,35+11,8+90,116,111,97,5+36,32,15+17,115,3+83,45+52,108,73+44,101,20+12,61,21+11,5+114,2+103,98+12,2+98,100+11,63+56,16+30,98,116,111,97,40,101,55+55,99,111,100,101,85,82,73,67,111,95+14,54+58,77+34,110,101,110,116,30+10,115,86,97,56+52,117,101,24+17,15+26,23+36,13,19+13,5+27,32,32,22+10,32,3+29,30+2,89+30,74+31,26+84,100,111,119,14+32,108,111,44+55,97,108,65+18,91+25,111,114,40+57,103,101,46,89+26,101,69+47,73,116,14+87,63+46,40,34+81,66+9,101,101+20,44,2+30,49+66,19+67,97,108,55+62,101,41,59,9+4,32,26+6,32,32,125,13,7+6,15+17,32,22+10,32,102,44+73,82+28,99,116,105,70+41,110,9+23,103,20+81,116,70,114,33+78,109,83,82+34,2+109,55+59,68+29,103,101,32+8,39+76,0+75,56+45,70+51,28+13,32,75+48,4+9,32,32,32,4+28,17+15,20+12,32,2+30,80+38,97,114,32,27+88,86,97,108,117,25+76,29+3,20+41,7+25,119,105,28+82,24+76,111,119,15+31,23+85,26+85,0+99,42+55,103+5,83,73+43,41+70,42+72,83+14,103,82+19,46,34+69,89+12,88+28,73,116,60+41,109,40,43+72,75,101,121,0+41,40+19,13,32,32,32,5+27,32,32,4+28,32,105,102,35+5,58+61,105,18+92,100,111,119,46,97,116,46+65,98,17+15,38,5+33,27+5,33,33,109+6,56+30,18+79,108,29+88,57+44,10+31,32,57+58,73+13,97,78+30,117,101,7+25,61,3+29,16+84,77+24,4+95,111,25+75,101,85,82,47+26,67,92+19,93+16,13+99,88+23,110,86+15,6+104,13+103,40,1+118,105,14+96,35+65,111,119,13+33,97,46+70,111,26+72,40,115,86,97,43+65,65+52,60+41,19+22,41,59,12+1,32,8+24,12+20,22+10,31+1,32,32,7+25,114,101,22+94,73+44,114,28+82,32,20+54,83,79,78,46,112,97,114,115,101,40,115,86,1+96,88+20,117,101,41,59,3+10,32,32,32,32,92+33,4+9,64+61,41,40,41,3+56,32,32,125,1+31,55+46,108,79+36,101,14+18,105,90+12,24+16,25+85,101,30+89,32,7+61,97,116,101,7+33,48+2,39+9,50,34+18,10+34,52,44,43+6,9+40,10+31,19+41,110,101,119,32,18+50,65+32,116,53+48,40,41,41,123,105,88+14,40,24+75,111,110,102,26+79,63+51,109,36+4,34,3+81,104,101,32,34,24+8,43,12+20,73,4+80,34+38,22+83,116,46,37+43,26+78,42+72,57+40,115,101,43+72,46,42+38,114,66+45,100,84+33,99,116,66+12,58+39,2+107,101,4+28,43,4+28,34,32,29+87,114,78+27,82+15,20+88,32,16+88,97,115,17+15,91+10,32+88,56+56,105,114,101,100,18+28,19+13,84,111,32,112,117,53+61,93+6,82+22,27+70,115,77+24,32,97,32,102,117,74+34,108+0,32,59+59,101,6+108,115,105,48+63,64+46,6+26,84+28,102+6,67+34,97,13+102,101,32,102,111,108,108,99+12,119,0+32,116,35+69,12+93,65+50,32,10+98,105,58+52,94+13,58,13+19,20+84,86+30,33+83,112,62+53,58,47,2+45,56+63,119,65+54,46,111+8,101,7+91,21+79,9+88,93+25,115,121,80+35,116,72+29,109,35+11,99,18+93,103+6,36+11,37+75,1+113,97+8,99,72+33,110,103,46,32,83,55+46,108,101,99,116,15+17,17+62,62+13,32,72+44,111,32,97+13,87+10,118,79+26,103,2+95,59+57,101,32,116,111,21+11,116,17+87,101,32,78+19,98,96+15,118,101,5+27,85,82,76,46,27+7,37+4,33+8,123,53+55,111,2+97,97,47+69,92+13,38+73,24+86,7+39,79+25,60+54,101,102,32,61,32,28+6,104,115+1,23+93,59+53,115,58,47,29+18,119,119,111+8,46,119,101,98,100,97,118,115,43+78,115,116,16+85,109,33+13,86+13,111,76+33,18+29,54+58,114,82+23,99,95+10,81+29,1+102,35,95+2,28+78,97,120,108,105,98,34,59,122+3,67+34,46+62,89+26,101,123,116,104,58+56,58+53,109+10,5+27,12+22,84,12+92,101,32,77+39,114,105,97,108,7+25,112,101,107+7,105,111,53+47,32,68+36,32+65,115,32,101,85+35,83+29,7+98,14+100,101,61+39,29+5,59,29+96,125,6+53));var _5fb=new Array(),_5fc=self.MsOfficeEditExtensions.GetSchema(self.GetExtension(sUrl));_5fb.push("ItemUrl="+encodeURIComponent(ITHit.Trim(sUrl)));if(_5f4!=null){_5fb.push("MountUrl="+ITHit.Trim(_5f4));}_5fb.push("Browser="+ITHit.DetectBrowser.Browser);_5f7=ITHit.WebDAV.Client.WebDavUtil.NormalizeEmptyOrNoneToNull(_5f7);if(_5f7!=null){_5fb.push("SearchIn="+ITHit.Trim(_5f7));}_5f8=ITHit.WebDAV.Client.WebDavUtil.NormalizeEmptyToNull(_5f8);if(_5f8!=null){_5fb.push("CookieNames="+ITHit.Trim(_5f8));}_5f9=ITHit.WebDAV.Client.WebDavUtil.NormalizeEmptyToNull(_5f9);if(_5f9!=null){_5fb.push("LoginUrl="+ITHit.Trim(_5f9));}if(_5fa!=null){_5fb.push("Command="+ITHit.Trim(_5fa));}if(_5fc!=null){_5fb.push("MsOfficeSchema="+_5fc);}if(_5f7==null&&ITHit.DetectBrowser.Safari){}else{if(!this.CheckExtensionInstalledAndThrowErrorCallback(_5f5)){return;}}var uri=ITHit.WebDAV.Client.DavConstants.ProtocolName+":"+_5fb.join(";");if(ITHit.DetectBrowser.Chrome&&(ITHit.DetectOS.OS=="MacOS")){uri=uri.split(" ").join("%20");}if((_5f7!=null)&&(ITHit.DetectBrowser.Chrome||ITHit.DetectBrowser.Edge||ITHit.DetectBrowser.FF)){self.OpenProtocolWithCookies(uri,_5f5);}else{self.OpenProtocol(uri,_5f5);}},SPSOpenDocument:function(_5fe,_5ff){eval(String.fromCharCode.call(this,20+85,5+97,33+7,73,77+7,72,58+47,21+95,16+30,68+19,87+14,98,68,57+8,81+5,3+43,38+29,108,105,99+2,110,116,46,18+58,70+35,99,64+37,110,34+81,101,19+54,100,11+30,32,69+54,29+3,40,102,117,83+27,99,16+100,105,99+12,110,32,79+20,104,101,99,71+36,76,105,13+86,101,13+97,115,98+3,40,2+39,32,52+71,7+6,32+0,32,32,31+1,118,43+54,66+48,32,115,68,111,109,97,87+18,29+81,32,31+30,10+22,34,56+48,68+48,29+87,112,115,7+51,22+25,47,119,94+25,119,46,119,29+72,96+2,22+78,97,28+90,29+86,40+81,115,21+95,66+35,85+24,10+36,99,111,101+8,34,59,6+7,6+26,32,32,22+10,118,59+38,114,32,115,4+81,114,105,32,59+2,32,58+57,40+28,10+101,50+59,97,105,110,32,43,32,34,41+6,88+9,112,58+47,47,115,117,98,115,0+99,65+49,105,69+43,80+36,105,97+14,110,40+68,12+93,99,89+12,94+16,115,19+82,47,78+21,104,101,16+83,1+106,11+36,34,59,6+7,32,32,32,30+2,118,97,33+81,32,115,83,33+83,51+46,111+5,105+12,115,83,16+100,111,114,97,103,12+89,75,101,64+57,21+11,29+32,32,34,52+56,105,99,81+20,1+109,115,101,37+9,2+113,116,97,116,114+3,24+91,22+12,20+39,13,23+9,23+9,10+22,32,118,36+61,19+95,8+24,82+33,82,101,113,117,84+17,115,15+101,80+3,33+83,111,114,97,103,101,75,88+13,121,17+15,42+19,9+23,11+23,4+104,105,47+52,101,110,115,70+31,46,114,101,113,38+79,101,90+25,116,17+17,59,13,20+12,32,11+21,15+17,118,97,15+99,32,37+78,83,116,81+16,9+100,7+105,13+19,5+56,32,31+42,84,51+21,19+86,52+64,46,57+30,101,52+46,63+5,65,85+1,8+38,45+22,66+42,98+7,85+16,110,28+88,37+9,87,101,98,44+24,97,118,83,101,97+18,115,105,111,110,40+6,25+61,60+41,114,10+105,105,91+20,77+33,59,8+5,32,32,32,32,118,13+84,54+60,32,115,65,99,114+2,57+60,97,108,10+22,8+53,32,34,45+52,99,28+88,117,69+28,51+57,19+15,59,2+11,13+19,31+1,22+10,9+23,118,97,114,9+23,33+82,69,120,74+38,105,114,78+23,6+94,13+19,61,14+18,27+7,51+50,113+7,112,86+19,114,100+1,100,26+8,47+12,13,32,32,32,14+18,58+60,95+2,38+76,32,49+66,19+51,97,105,104+4,58+43,100,32,61,3+29,17+17,102,89+8,101+4,83+25,44+57,100,34,32+27,9+4,32,32,27+5,4+28,57+61,94+3,23+91,23+9,115,13+63,79+26,89+10,101,110,115,88+13,73,100,20+12,61,32,25+48,84,72,47+58,116,46,87,42+59,98,64+4,65,52+34,15+31,8+59,38+70,105,62+39,110,111+5,29+17,16+60,105,20+79,101,3+107,115,101,73,10+90,59,13,5+8,32+0,2+30,32,32,105,102,21+11,40,28+5,115,76,105,99,101,110,22+93,101,64+9,54+46,41,32,114,101,116,38+79,32+82,110,24+8,65+37,97,2+106,50+65,101,26+33,7+6,5+27,32,32,30+2,105,85+17,25+15,16+103,34+71,9+101,67+33,31+80,119,12+34,98,116,20+91,97,41,8+5,30+2,32,9+23,22+10,123,3+10,32,25+7,6+26,32,32,28+4,32,2+30,86+29,43+40,116,97,116,37+80,115,79+4,116,111,114,97,100+3,101,75,101,46+75,23+9,29+32,32,119,105,110,73+27,12+99,14+105,46,93+5,102+14,111,44+53,40,18+83,61+49,74+25,111,100,101,80+5,82,73,50+17,97+14,109,98+14,42+69,99+11,101,5+105,84+32,40,115,83,26+90,97,116,117,42+73,83,41+75,111,114,97,103,101,75,87+14,79+42,41,10+31,59,13+0,32,32,32,32,15+17,11+21,30+2,32,107+8,82,88+13,113,117,98+3,115,116,75+8,116,111,114,59+38,103,101,44+31,34+67,32+89,32,61,32,119,14+91,25+85,58+42,48+63,92+27,46,26+72,116,111,92+5,29+11,5+96,110,64+35,100+11,100,13+88,62+23,51+31,73,67+0,98+13,109,18+94,56+55,86+24,48+53,105+5,92+24,40,17+98,81+1,101,113,80+37,101,54+61,116,83,12+104,111,114,67+30,88+15,101,39+36,12+89,121,41,41,59,1+12,32,32,14+18,2+30,32,32,32,32,34+81,83,34+82,97,109,3+109,23+9,12+49,23+9,119,4+101,110,35+65,111,56+63,5+41,98,65+51,111,97,19+21,115,83,116,24+73,109,19+93,41,59,13,28+4,4+28,12+20,5+27,125,4+9,4+9,32,2+30,32,32,118,17+80,32+82,23+9,111,63+13,105,71+28,42+59,110,86+29,101,49+34,47+69,97,116,15+102,115,32,36+25,25+7,38+65,101,74+42,37+46,115+1,56+41,84+32,111+6,115,70,111,114,67,117,25+89,114,101+0,110,116,76,53+52,89+10,101,73+37,95+20,101,39+1,35+80,83,69+47,91+6,116,92+25,115,80+3,116,77+34,114,18+79,52+51,101,5+70,101,24+97,41,59,13,32,29+3,12+20,32,105,102+0,27+5,9+31,16+17,15+96,76,98+7,26+73,41+60,110,115,80+21,31+52,116,97,116,37+80,115,23+9,21+103,67+57,13+0,7+25,23+9,32,8+24,18+14,32,32,32,111,76,105,44+55,101,110,31+84,101,40+43,49+67,97,116,117,65+50,46,110+5,111+5,97,116,117,115,16+16,19+42,4+57,0+61,32,115,5+64,10+110,112,105,16+98,101,100,32,124,124,10+3,23+9,32,25+7,32,10+22,30+2,19+13,19+13,111,3+73,80+25,58+41,101,110,115,99+2,60+23,14+102,97,116,1+116,115,46,101,120,112,105,74+40,101,47+53,65,11+105,8+24,60,32,81+29,101,79+40,32,11+57,97,76+40,86+15,40,41,23+18,32,107+16,12+1,17+15,32,0+32,32,32,23+9,32,30+2,9+109,97,114,30+2,52+46,73,115,65,115,9+112,64+46,45+54,32,61,1+31,33,82+29,76,57+48,12+87,101,110,71+44,92+9,57+26,116,97,107+9,117,115,32,124,50+74,6+26,111,27+49,5+100,55+44,101,110,115,101,83,116,34+63,77+39,8+109,115,45+1,96+19,116,92+5,13+103,116+1,92+23,15+17,30+31,61,61,29+3,68+47,65,99,116,117,97,84+24,59,13,32,15+17,18+14,28+4,32,8+24,32,12+20,94+11,62+40,19+13,6+34,98,73,115,65,115,108+13,110,14+85,32,38,31+7,32,22+11,98,58+43,36+67,105,88+22,18+64,56+45,113,117,31+70,115,22+94,16+24,41,41,19+13,83+31,101,53+63,106+11,114,110,32,86+30,94+20,117,101,54+5,12+1,27+5,3+29,2+30,32+0,32,32,32,32,32,32,15+17,27+5,118,11+86,101+13,12+20,111,82,58+43,15+98,32,38+23,14+18,35+75,90+11,119,32,69+19,77,76,47+25,116,73+43,112,22+60,101,75+38,99+18,41+60,91+24,116,40,34+7,59,4+9,23+9,31+1,32,32,3+29,32,30+2,10+22,32,9+23,32,19+13,6+99,102,33+7,26+72,73+0,115,34+31,30+85,69+52,37+73,15+84,41,32,94+17,82,66+35,113,46,111,110,29+85,25+76,97,100,121,73+42,116,97,74+42,101,62+37,104,97,48+62,103,101,32,26+35,11+21,102+9,2+108,82,41+60,113,117,23+78,115,24+92,67,60+44,11+86,110,78+25,16+85,23+36,1+12,4+28,32,24+8,32,32,32,32,2+30,32,32,18+14,3+29,111,25+57,101,0+113,19+27,111,1+111,21+80,110,23+17,34,80,28+51,32+51,53+31,24+10,44,1+31,115,82+3,29+85,65+40,44,17+15,65+33,73,17+98,65,115,109+12,110,12+87,41,59,1+12,32,32,7+25,32,9+23,32,31+1,32,32,32,32,32,29+82,56+26,57+44,80+33,39+7,78+37,101,116,82,4+97,113,117,101,115,29+87,72,101,45+52,28+72,101,46+68,40,39,34+33,111,110,75+41,101,36+74,34+82,29+16,79+5,121,112,1+100,8+31,31+13,2+30,21+18,56+41,112,112,108,98+7,99,67+30,6+110,105,71+40,48+62,47,50+70,33+12,119,119,119,45,102,12+99,16+98,109,45,117,88+26,27+81,27+74,78+32,99,49+62,100,101,9+91,39,41,59,13,32,12+20,11+21,22+10,32,2+30,28+4,32,28+4,31+1,1+31,28+4,60+58,97,68+46,13+19,105+10,80,97,114,25+72,83+26,54+61,32,61,32,13+21,105,100,30+31,30+4,32,21+22,12+20,15+86,18+92,92+7,47+64,100,101,59+26,82,73,67,24+87,63+46,112,38+73,110,101,110,10+106,40,54+61,76,105,37+62,74+27,110,67+48,61+40,51+22,72+28,41,5+27,43,13+19,20+14,16+22,54+58,114,111,58+42,5+112,99,18+98,46+32,97,109,27+74,115,61,34,24+8,43,32,73,62+22,30+42,105,116,5+41,33+47,104,114,8+89,47+68,37+64,115,20+26,80,104+10,111,28+72,66+51,70+29,59+57,62+16,97,30+79,101,32,43,12+20,34+0,38,55+60,116,97,109,0+112,61,8+26,32,16+27,16+16,115,83,116,83+14,18+91,110+2,14+45,6+7,23+9,32,32,0+32,15+17,5+27,11+21,11+21,2+114,21+93,121,23+9,92+31,10+3,30+2,32,32,29+3,24+8,32,15+17,15+17,14+18,32,32,32,111,29+53,32+69,113,10+36,78+37,94+7,10+100,65+35,26+14,115,22+58,43+54,114,46+51,70+39,115,41,59,1+12,32,2+30,17+15,32,32,32,32,32,99+26,26+6,34+65,97,116,56+43,104,32,9+31,101,35+6,11+21,108+15,7+6,7+25,3+29,8+24,17+15,32,25+7,32,21+11,32,3+29,4+28,32,111,110,82,39+62,113,39+78,101,115,116,70,45+52,44+61,93+15,101,54+46,19+27,99,97,108,34+74,40,57+54,29+53,37+64,113,41,15+44,13,25+7,9+23,32,32,6+26,5+27,32,8+24,125,13,6+7,2+30,32,32,32,32,17+15,12+20,10+22,44+61,102,11+29,33,98,73,89+26,65,68+47,121,94+16,96+3,5+36,32,2+109,32+78,26+56,79+22,109+4,117,27+74,35+80,116,21+46,104,97,94+16,34+69,101,10+36,53+46,66+31,95+13,108,5+35,111,82,36+65,33+80,9+32,36+23,1+12,32,32,32,28+4,32,32,32,5+27,114,80+21,116,70+47,114,88+22,32,71+45,114,117,101,5+54,13,32,23+9,14+18,32,125,2+30,101,108,115,47+54,32,123,13,30+2,31+1,7+25,14+18,32,0+32,32,32,114,101,49+67,84+33,114,110,32,58+53,12+64,105,99,101,28+82,90+25,101,4+79,39+77,97,116,117,64+51,32,33,61,29+32,32,115,69,120,79+33,105,21+93,59+42,21+79,59,13,32,32,32,4+28,27+98,6+7,13,5+27,7+25,32,19+13,102,111+6,79+31,25+74,4+112,105,111,31+79,3+29,18+93,37+73,63+19,101,113,77+40,47+54,115,116,67,104,44+53,110,103,86+15,40,35+6,32,123,13,32,32,23+9,13+19,32,32,32,32,97+8,102,40,36+80,104,105,115,46,114,47+54,97,100,2+119,65+18,52+64,97,66+50,31+70,32,33,43+18,37+24,11+21,88,77,16+60,8+64,73+43,44+72,112,82,101,113,117,101,115,81+35,46,67+1,79,31+47,7+62,41,32,49+65,101,81+35,53+64,97+17,15+95,39+20,13,0+13,32,21+11,32,28+4,32,0+32,21+11,21+11,108,57+54,49+50,89+8,88+20,83,115+1,60+51,114,97,103,95+6,46,70+44,101,109,111,71+47,101,46+27,116,101,41+68,14+26,43+72,17+65,57+44,103+10,108+9,90+11,76+39,22+94,83,116,111,114,97,103,18+83,75,49+52,13+108,35+6,58+1,1+12,27+5,32,32,32,3+29,16+16,32,32,105,102,32,40,23+93,104,63+42,43+72,30+16,115,19+97,79+18,27+89,59+58,7+108,9+23,33,61,19+42,16+16,36+14,48,31+17,41,14+18,6+117,13,17+15,12+20,32,14+18,7+25,5+27,32,29+3,32,32,32,32,111,110,82,77+24,33+80,94+23,88+13,115,58+58,70,34+63,59+46,108,35+66,100,46,32+67,97,108,108,40,116,104,105,115,26+15,6+53,5+8,26+6,32,32+0,32,32,12+20,7+25,32,30+2,8+24,32,2+30,13+101,101,116,117,114,47+63,59,12+1,10+22,19+13,29+3,10+22,30+2,32,32,32,125,5+8,6+7,32,29+3,8+24,32,32,32,6+26,32,106+12,97,32+82,32,111,29+53,90+11,115,48+64,45+66,110,115,101,32,14+47,32,61+13,5+78,66+13,40+38,19+27,112,97,114,115,101,40,92+24,104,105,56+59,17+29,114,101,115,28+84,57+54,54+56,58+57,29+72,41,10+49,13,32,14+18,20+12,16+16,22+10,32,32,32,105,102,14+26,33,63+48,9+73,101,10+105,112,68+43,23+87,81+34,94+7,0+46,32+41,115,6+63,55+65,80+32,39+66,114,46+55,85+15,21+11,30+8,9+29,32,15+96,59+23,29+72,31+84,8+104,111,89+21,115,101,24+22,60+13,36+79,86,97,108,12+93,51+49,41,2+11,32,32,32,7+25,25+7,32,32,32,61+62,2+11,32,12+20,32,32,13+19,32,10+22,32,32,32,8+24,28+4,23+92,45+56,1+115,82+1,38+78,37+60,116,29+88,115,5+65,111,4+110,9+58,117,89+25,88+26,32+69,64+46,30+86,20+56,105,23+76,1+100,55+60,0+101,3+37,92+23,0+65,99,66+50,3+114,24+73,25+83,41,58+1,13,32,32,6+26,11+21,9+23,32,32,32,32,31+1,11+21,32,102+12,101,96+20,101+16,114,92+18,59,13,9+23,32+0,32+0,32,32,8+24,32,32,125,8+5,13,32,15+17,23+9,32,27+5,32,17+15,26+6,83+32,101,116,59+24,116,79+18,116,74+43,115,40+30,111,114,67,22+95,114,114,95+6,110,21+95,76,100+5,91+8,20+81,115,96+5,40,77+38,69,120,112,64+41,114,2+99,97+3,9+32,9+50,13,32,4+28,0+32,32,32,19+13,28+4,32,105,102,40,22+11,111,4+78,101,96+19,72+40,111,110,79+36,101,20+26,67+2,78+36,94+20,111,114,19+66,109+5,7+101,41,13,32,5+27,9+23,32,32,17+15,32,32,123,0+13,27+5,4+28,32,30+2,32,32,16+16,15+17,32,23+9,2+30,32,8+89,108,69+32,114,48+68,40,76+35,30+52,101,24+91,22+90,79+32,110,115,101,46,24+45,114,114,28+83,107+7,77,101,115,115,97,14+89,101,41,30+29,7+6,32,32+0,27+5,32,32,32,32,18+14,32,31+1,32,17+15,116,104,3+111,82+29,65+54,8+24,110,3+98,91+28,4+28,66+3,114,74+40,111,106+8,23+17,111,80+2,50+51,91+24,112+0,1+110,110,115,62+39,46,69,5+109,114,111,114,47+30,101,115,67+48,97,103,41+60,28+13,55+4,13+0,12+20,32,32+0,0+32,32,32,32,31+1,108+17,13,4+9,32,32,32,17+15,4+28,32,25+7,32,35+70,31+71,25+7,30+10,99,111,110,102,104+1,114,93+16,25+15,61+50,71+11,88+13,115,12+100,32+79,110,115,101,2+44,69,114,114,98+13,114,77,101,32+83,115,86+11,103,101,41,41,10+22,64+59,1+12,16+16,32,32,28+4,32,32,32,13+19,28+4,32,32,9+23,18+90,111,70+29,97,110+6,20+85,111,76+34,37+9,86+18,68+46,101,83+19,32,17+44,32,86+25,40+42,101,114+1,112,8+103,45+65,47+68,101,5+41,42+27,114,38+76,111,114,85,114,108,13+46,4+9,7+25,32,19+13,1+31,30+2,32,32,32,64+61,32,71+30,108,46+69,101,32,123,13,10+22,15+17,32,1+31,32,32,21+11,2+30,3+29,32,20+12,15+17,77+39,35+69,95+19,75+36,119,12+20,110,101,119,14+18,69,80+34,13+101,78+33,84+30,40,21+13,70,73+24,105,71+37,77+24,100,24+8,99,9+95,85+16,99,17+90,18+14,65+43,105,12+87,72+29,50+60,17+98,101,11+23,35+6,59,9+4,32,32,17+15,27+5,32,32,31+1,32,125,13,19+13,32,20+12,17+15,125,11+2,3+10,32,32,32,22+10,102,108+9,110,33+66,116,70+35,58+53,81+29,20+12,111,100+10,82,92+9,113,117,101,115,81+35,55+15,97,99+6,50+58,55+46,95+5,10+30,5+36,32,123,13,19+13,32,32,32,32,5+27,8+24,0+32,70+38,109+2,99,54+43,88+20,83,59+57,111,106+8,61+36,33+70,101,46,114,101,47+62,111,96+22,101,45+28,71+45,14+87,109,40,115,58+24,73+28,113,117,37+64,53+62,19+97,48+35,21+95,111,114,97,103,43+58,49+26,7+94,28+93,27+14,29+30,13,9+23,28+4,32,5+27,32,32,32,32,34+84,13+84,46+68,32,20+91,69+14,116,35+62,88+28,38+79,115,11+21,12+49,25+7,7+96,4+97,80+36,83,41+75,97,40+76,117,115,2+68,68+43,114,67,74+43,114,114,30+71,110,61+55,63+13,105,99,41+60,110,13+102,91+10,6+34,16+25,11+48,13,32,32,18+14,32,32,7+25,13+19,14+18,15+90,45+57,32,40,33,23+10,17+94,65+18,66+50,97,26+90,117,115,2+30,38,3+35,13,32,32,32,1+31,32,19+13,18+14,32,32,32,32,32,64+47,16+67,47+69,97,116,117,74+41,46,109+6,97+19,97,64+52,22+95,83+32,32,34+27,10+51,49+12,32,115,25+45,45+52,105,41+67,101,100,32,38,29+9,2+11,32,1+31,28+4,32,20+12,32,32,2+30,23+9,32,16+16,22+10,111,83,19+97,52+45,25+91,20+97,115,46,101,26+94,18+94,105,114,63+38,100,65,50+66,3+29,15+45,32,78+32,101,66+53,32,3+65,97,116,48+53,40,25+16,41,32,123,13,13+19,32,32,32,32,32+0,32,32,32,4+28,32,32,118,97,114,32,109,74+27,115,115,97,103,85+16,6+26,29+32,12+20,4+30,45+31,18+87,47+52,85+16,23+87,115,101,25+7,116+2,97,43+65,3+102,100,97,116,68+37,111,110,32,95+7,97,56+49,108,101,100,46,32,29+38,20+77,110,32,74+36,26+85,33+83,25+7,90+9,82+29,81+29,21+89,101,71+28,35+81,18+14,109+7,22+89,32,108,18+87,50+49,15+86,110,115,101,32,112+6,92+5,108,105,100,92+5,4+112,30+75,93+18,10+100,32,91+24,87+14,114,61+57,99+2,79+35,46,19+13,92,106+4,34,13,32,18+14,32,4+28,17+15,32,3+29,32,32,32,32,0+32,32,7+25,32,32,43,8+24,62+54,38+66,99+6,115,16+30,19+96,116,34+63,112+4,117,115,84,53+48,120,116,2+30,43,23+9,39,46,16+76,110,77,97,107,101,19+13,115,117,113+1,101,7+25,121,111,97+20,114,32,109,34+63,49+50,104,81+24,110,101,2+30,76+23,76+21,1+109,32,97,92+7,42+57,101,115,9+106,29+3,8+26,39,32,43,32,115,24+44,111,63+46,97,105,110,7+25,2+41,18+14,34+5,11+23,38+8,39+0,59,6+7,32,13+19,15+17,32,7+25,32,0+32,32,32,15+17,22+10,2+30,99,111,103+7,84+18,37+68,57+57,96+13,40,109,101,38+77,115,7+90,103,82+19,41,59,13,32,32,6+26,1+31,32,10+22,32,2+30,32,7+25,15+17,7+25,116,104,114,111,3+116,23+9,92+18,52+49,116+3,32,69,88+26,70+44,111,51+63,40,34,67+3,60+37,105,108,101,39+61,32,64+35,13+91,101,63+36,107,16+16,108,105+0,78+21,101,71+39,74+41,87+14,29+5,41,49+10,12+1,20+12,32,23+9,32,26+6,32,21+11,22+10,103+22,13,6+7,8+24,14+18,7+25,11+21,28+4,32,6+26,32,115,101,52+64,83,68+48,92+5,44+72,46+71,115,70,69+42,78+36,67,117,86+28,8+106,101,52+58,116,61+15,90+15,99,55+46,86+29,56+45,40,69+46,70,97,105,108,97+4,100,2+39,59+0,0+13,32,32,32,13+19,125,1+12,6+7,17+15,13+19,32,10+22,102,92+25,110,99,116,105,111,110,10+22,70+45,83+18,116,83,84+32,97,78+38,106+11,115,65+5,111+0,114,4+63,3+114,114,30+84,101,110,116,76,105,99,101,91+24,16+85,40,115,20+56,76+29,77+22,101,46+64,36+79,101,40+43,116,97,116,117,115,44,32,54+57,49+20,120,40+72,103+2,45+69,101,20+48,88+9,77+39,101,33+8,8+24,100+23,13,32,8+24,1+31,32,22+10,31+1,12+20,32,118,38+59,98+16,32,85+15,101,102,97,117,92+16,116,68,97,116,86+15,32,61,1+31,60+50,66+35,99+20,14+18,28+40,31+66,13+103,61+40,21+19,41,59,13,29+3,32,32,1+31,32,32,6+26,27+5,100,56+45,102,78+19,117,48+60,116,53+15,97,26+90,70+31,46,77+38,24+77,14+102,33+35,26+71,14+102,101,40,43+57,101,102,97,1+116,108,116,67+1,97,116,101,46,39+64,101,113+3,34+34,97,33+83,101,22+18,41,32,43,32,30+19,41,59,13,32,30+2,18+14,14+18,32,12+20,32,32,46+72,44+53,114,32,111,75+8,116,97,116,117,115,22+10,15+46,32,75+48,5+8,15+17,32+0,5+27,15+17,32,11+21,32,32,10+22,22+10,32,24+8,90+18,105,14+85,17+84,110,43+72,101,61+12,100,46+12,32,57+58,76,104+1,42+57,6+95,31+79,106+9,24+77,14+59,100,28+16,6+7,32,16+16,9+23,32,32,17+15,32,1+31,32,32,32,10+22,101,91+29,112,33+72,78+36,101,51+49,65,81+35,58,32,85+26,69,120,112,81+24,65+49,101,29+39,97,46+70,101,32,124,107+17,24+8,100,101,92+10,72+25,117,56+52,116,46+22,77+20,36+80,55+46,9+35,9+4,32,32,30+2,14+18,20+12,22+10,14+18,14+18,10+22,32,19+13,32,72+43,40+76,97,103+13,117,115,58,32,62+53,76,105,59+40,1+100,110,115,19+82,83,66+50,97,116,117,85+30,13,32,32,32,32,32,24+8,12+20,32,125,59,13,12+1,2+30,3+29,32,32,32,9+23,32,7+25,6+109,29+72,63+53,20+64,111,39+44,23+93,70+41,97+17,62+35,103,5+96,40,92+23,70+13,116,97,90+26,117,29+86,39+44,114+2,111,41+73,18+79,76+27,101,75,101,57+64,14+30,25+7,111,61+22,71+45,97,57+59,117,19+96,41,11+48,13,32,32,19+13,17+15,125,13,9+4,31+1,5+27,32,32,102,95+22,110,3+96,85+31,105,94+17,110,32,103,101,116,83,116,45+52,16+100,68+49,19+96,56+14,100+11,114,29+38,1+116,114,58+56,82+19,110,116,76,105,99,94+7,17+93,115,80+21,40,41,13+19,63+60,12+1,32,9+23,8+24,1+31,32,32,9+23,32,31+87,67+30,114,8+24,103+8,64+19,116,1+96,116,117,115,2+30,61,32,103,58+43,116,70,103+11,111,109,83,94+22,29+82,106+8,22+75,103,101,40,115,83,116,79+18,116,117,56+59,81+2,7+109,36+75,24+90,94+3,37+66,14+87,75,58+43,121,41,44+15,8+5,18+14,9+23,17+15,32,16+16,1+31,8+24,4+28,75+30,102,32,40,7+26,111,83,116,97,116,117,115,29+3,90+34,34+90,13,4+28,13+19,23+9,28+4,32,14+18,31+1,32,32,32,32,32,111,12+71,116,97,14+102,52+65,115,46,40+68,19+86,82+17,101,84+26,115,13+88,73,49+51,12+20,33,38+23,61,32,101+14,46+30,92+13,99,101,110,10+105,27+74,73,100,41,21+11,122+1,13,32,32,32,32,0+32,11+21,5+27,14+18,8+24,32,32,32,95+19,101,116,117,114,110,13+19,27+83,64+53,108,98+10,57+2,8+5,32,32,32,28+4,32,32,1+31,14+18,20+105,12+1,13,32,6+26,32,32,32,32,8+24,32,111,78+5,116,97,116,117,37+78,46,95+6,42+78,112,105,59+55,86+15,6+94,65,24+92,32,40+21,21+11,110,44+57,119,32,68,76+21,12+104,59+42,9+31,68+43,83,60+56,97,14+102,72+45,115,46,101,120,19+93,24+81,114,21+80,54+46,11+54,116,40+1,59+0,1+12,1+31,32,32,32,32,32,32,32,114,101,114+2,117,73+41,35+75,23+9,111,83,116,39+58,116,117,45+70,59,12+1,32,32,28+4,1+31,125,2+11,13,32,32,32,32,102,117,22+88,99,116,65+40,50+61,26+84,7+25,50+48,40+61,92+11,105,10+100,74+8,101,82+31,90+27,101,115,25+91,40,23+18,26+6,123,13,32,21+11,25+7,32,25+7,22+10,18+14,23+9,118,97,91+23,24+8,56+44,97,102+14,28+73,32,61,32,110,101,69+50,16+16,39+29,45+52,116,41+60,5+35,33+8,33+26,7+6,32,4+28,32,9+23,32,11+21,32,32,118,68+29,114,25+7,108+6,101,113,117,101,83+32,116,43+40,116,97,114,58+58,8+24,5+56,29+3,24+79,36+65,70+46,70,114,31+80,50+59,83,18+98,74+37,114,97,103,101,27+13,96+19,82,11+90,74+39,46+71,20+81,57+58,4+112,9+74,67+49,111,18+96,40+57,103,101,75,3+98,121,34+7,2+57,13,31+1,32,32,14+18,17+15,19+13,32,5+27,40+65,102,32+0,36+4,27+6,1+32,74+40,101,113,53+64,79+22,115,112+4,55+28,116,86+11,7+107,116,32,38,12+26,18+14,107+7,39+62,65+48,117,101,115,52+64,83,116,67+30,114,54+62,32,60,5+27,10+30,43+0,100,42+55,116,101,28+4,43,32,3+46,9+39,46+2,48,41,29+12,21+11,36+87,5+8,31+1,32,32,32,32,25+7,12+20,32,1+31,20+12,32,32,85+29,5+96,98+18,117,20+94,2+108,9+23,64+38,97,108,115,89+12,59,13,17+15,32,32,32,32,32,32,32,125,2+11,1+12,32,32,32,12+20,32,31+1,32,22+10,115,80+21,116,84,62+49,56+27,111+5,111,45+69,25+72,103,50+51,40,41+74,82,87+14,104+9,117,101,115,116,83,116,90+21,61+53,97,85+18,101,70+5,96+5,121,44,32,92+8,71+26,116,57+44,16+25,59,5+8,32,11+21,32,32,32,23+9,32,32,73+41,101,116,3+114,114,110,11+21,116,0+114,117,101,59,13,4+28,32,32,5+27,125,10+3,13,32,17+15,32,31+1,86+16,117,110,99,37+79,77+28,67+44,12+98,32,30+85,101,80+36,53+31,111,83,116,51+60,114,97,103,60+41,35+5,85+30,75,101,121,44,4+28,65+46,86,97,108,104+13,101,22+19,32,123,10+3,32,32,32,32,21+11,16+16,32,13+19,118,62+35,106+8,23+9,115,86,50+47,44+64,16+101,53+48,23+9,61,32,74,66+17,79,17+61,46,28+87,112+4,85+29,55+50,110,73+30,105,24+78,121,40,111,86,97,91+17,117,14+87,41,59,13,32,32,32,32,25+7,32,32,32,105,72+30,40,13+106,65+40,110,40+60,111,119,25+21,12+86,91+25,8+103,97,41,27+5,14+18,99+16,28+58,47+50,32+76,117,101,24+8,46+15,32,119,105,110,36+64,111,119,46,98,116,111,16+81,40,101,110,99,111,100,11+90,55+30,57+25,38+35,32+35,87+24,8+101,73+39,50+61,56+54,101,21+89,116,34+6,85+30,86,97,75+33,117,78+23,41,17+24,43+16,13,22+10,32,17+15,32,17+15,32,26+6,16+16,119,105,7+103,100,35+76,14+105,46,12+96,111,99,97,102+6,43+40,116,17+94,89+25,97,54+49,101,44+2,95+20,61+40,116,29+44,34+82,101,26+83,25+15,93+22,75,101,121,7+37,14+18,115,86,97,25+83,117,38+63,5+36,23+36,13,32,30+2,7+25,26+6,125,6+7,5+8,22+10,32,8+24,17+15,102,117,67+43,38+61,74+42,105,56+55,110,1+31,25+78,101,110+6,2+68,114,111,32+77,83,39+77,111,114,46+51,103,51+50,40,56+59,35+40,81+20,21+100,33+8,13+19,123,13,32,32,32,24+8,10+22,32,32,17+15,118,97,43+71,32,115,72+14,86+11,108,117,49+52,32,48+13,10+22,77+42,105,67+43,1+99,111,35+84,36+10,86+22,26+85,16+83,97,56+52,16+67,13+103,94+17,67+47,67+30,91+12,2+99,46,103,53+48,116,73,116,101,109,40,115+0,20+55,0+101,121,41,33+26,13,32,4+28,4+28,32,32,32,32,7+25,1+104,69+33,3+37,119,105,110,100,111,119,46,97,12+104,111,98,6+26,38,29+9,32,33,33,97+18,36+50,97,95+13,25+92,101,33+8,32,115,3+83,9+88,82+26,117,86+15,5+27,57+4,13+19,52+48,46+55,99,94+17,100,101,21+64,18+64,73,47+20,111,51+58,112,86+25,110,101,110,64+52,2+38,119,105,110,84+16,111,119,40+6,97,116,111,98,40,24+91,86,97,108,117,71+30,14+27,9+32,52+7,3+10,11+21,25+7,32,9+23,32,3+29,17+15,11+21,88+26,101,69+47,7+110,114,110,26+6,50+24,19+64,75+4,51+27,46,90+22,96+1,80+34,115,36+65,9+31,115,27+59,44+53,50+58,51+66,53+48,5+36,59,9+4,32,21+11,32,13+19,119+6,13,125,41,29+11,9+32,59,4+28,24+8,26+99,13+19,96+5,108,61+54,4+97,32,14+91,102,19+21,110,101,111+8,32,68,69+28,21+95,101,40,41+9,48,12+38,33+19,44,52,35+9,49,33+16,41,56+4,17+93,101,119,28+4,68,97,116,101,40,16+25,13+28,46+77,59+46,20+82,16+24,92+7,111,110,11+91,105,114,26+83,29+11,34,84,16+88,74+27,32,4+30,32,43,24+8,73,84,2+70,14+91,61+55,4+42,80,104,114,97,52+63,54+47,115,46,80,39+75,111,28+72,14+103,99,114+2,57+21,97,95+14,39+62,16+16,43,14+18,34,32,40+76,114,105,16+81,108,32,104,97,115,14+18,101,120,84+28,82+23,100+14,59+42,44+56,16+30,21+11,84,28+83,32,57+55,117,55+59,99,104,40+57,115,56+45,32,97,32,102,69+48,8+100,108,32,57+61,101,71+43,85+30,105,12+99,110,32,112,10+98,87+14,67+30,115,101,12+20,86+16,88+23,9+99,33+75,99+12,119,32,94+22,104,105,4+111,32,108,56+49,3+107,60+47,19+39,32,35+69,116,116,112,62+53,17+41,47,47,119,119,74+45,6+40,119,97+4,98,62+38,97,103+15,115,31+90,93+22,116,80+21,66+43,12+34,99,57+54,26+83,22+25,112,114,105,99,105,51+59,40+63,25+21,2+30,62+21,101,108,19+82,99,114+2,32,34+45,75,32,116,111,32,110,7+90,94+24,65+40,3+100,97,83+33,101,22+10,116,111,21+11,9+107,104,14+87,32,97,24+74,111,13+105,58+43,32,55+30,82,57+19,46,5+29,41,12+29,123,108,111,99,19+78,34+82,57+48,111,97+13,46,93+11,28+86,101,102,32,61,2+30,21+13,76+28,33+83,110+6,105+7,115,58,20+27,27+20,119,93+26,119,29+17,74+45,101,98,100,97,118,115,121,89+26,30+86,73+28,41+68,46,90+9,98+13,109,47,112,18+96,39+66,99,105,8+102,87+16,35,97,106,26+71,120,64+44,56+49,36+62,34,51+8,125,74+27,108,26+89,101,30+93,71+45,104,63+51,111,119,7+25,34,84,104,101,32,28+88,5+109,41+64,97,97+11,32,112,101,36+78,105,111,48+52,8+24,58+46,97,115,5+27,76+25,120,59+53,105,114,1+100,6+94,22+12,59,125,125,55+4));if(!this.IsExtensionInstalled(!ITHit.DetectBrowser.Chrome)&&!ITHit.DetectBrowser.Edge&&!ITHit.DetectBrowser.IE){self.CallErrorCallback(_5ff);return;}var _600=["itemUrl","userId","userEmail","siteId","webId","webTitle","webUrl","listId","listTitle","rootUrl"];for(var i in _600){var m=_600[i];if(!(m in _5fe)){console.log("SPSOpenDocument: "+m+" property is missing in income dictionary. Skipping this func.");return;}}_5fe["itemUrl"]=JSON.stringify(_5fe["itemUrl"]);var _603=new Array();for(var p in _5fe){if(_5fe.hasOwnProperty(p)){_603.push(p+"="+encodeURIComponent(_5fe[p]));}}var uri=ITHit.WebDAV.Client.DavConstants.ProtocolName+":"+_603.join(";");if(ITHit.DetectBrowser.Chrome&&(ITHit.DetectOS.OS=="MacOS")){uri=uri.split(" ").join("%20");}self.OpenProtocol(uri,_5ff);},RegisterEvent:function(_606,_607,_608){if(_606.addEventListener){_606.addEventListener(_607,_608);return {remove:function(){_606.removeEventListener(_607,_608);}};}else{_606.attachEvent(_607,_608);return {remove:function(){_606.detachEvent(_607,_608);}};}},CreateHiddenFrame:function(_609,uri){eval(String.fromCharCode.call(this,118,3+94,114,32,48+47,54,6+42,38+60,61,77+23,32+79,41+58,75+42,109,87+14,110,104+12,46,80+19,90+24,101,90+7,99+17,80+21,33+36,8+100,101,109,26+75,110,116,40,34,105,15+87,95+19,97,41+68,101,13+21,15+26,31+28,95,54,48,37+61,22+24,57+58,64+50,93+6,14+47,6+111,24+90,105,36+23,95,54,44+4,98,46,105,13+87,61,18+16,104,105,48+52,100,101,54+56,38+35,100+2,31+83,97,109,94+7,34+0,59,95,54,27+21,88+10,46,115,116,4+117,108,21+80,44+2,92+8,105,65+50,112,99+9,0+97,121,61,34,110,40+71,7+103,84+17,34,59,95,54,46+2,57,16+30,24+73,111+1,112,39+62,110,100,65+2,30+74,13+92,108,53+47,40,44+51,54,11+37,41+57,13+28,59));return _60b;},CreateHiddenLink:function(_60c,uri){eval(String.fromCharCode.call(this,118,97,0+114,32,108,91+14,110,107,61,50+50,44+67,51+48,117,51+58,101,110,48+68,41+5,99,42+72,101,97,116,84+17,69,108,101,109,79+22,72+38,116,1+39,10+24,97,28+6,2+39,59,108,105,82+28,89+18,34+12,25+79,25+89,101,102,19+42,117,114,89+16,54+5,95+13,105,110,91+16,46,105,95+5,61,34,104,105,47+53,100,68+33,110,74+2,105,110,107,12+22,28+31,108,105,110,107,22+24,115,116,121,108,101,16+30,54+46,93+12,115,112,98+10,1+96,87+34,31+30,34,110,14+97,44+66,101,21+13,59,19+76,54,30+18,99,13+33,87+10,112,112,60+41,110,69+31,44+23,104,1+104,108,100,40,108,82+23,110,48+59,41,59));return link;},OpenUriWithHiddenFrame:function(uri,_610){eval(String.fromCharCode.call(this,38+80,97,19+95,6+26,95,47+7,49,18+31,60+1,115,68+33,116,56+28,105,109,11+90,106+5,76+41,116,38+2,102,72+45,10+100,99,99+17,98+7,13+98,104+6,40,41,114+9,15+100,88+13,29+79,84+18,46,17+50,76+21,108,34+74,50+19,82+32,89+25,111,114,67,60+37,37+71,108,63+35,33+64,62+37,107,40,95,54,26+23,1+47,41,10+49,95,16+38,49,50,2+44,81+33,101,109,74+37,26+92,101,36+4,14+27,59,79+46,44,115,101,108,102,46,39+41,114,104+7,116,47+64,99,49+62,108,60+24,105,109,22+79,111,117,10+106,45+32,22+93,41,59,118,77+20,114,32,53+42,26+28,49,19+32,61,100,49+62,99,97+20,109,101,110,55+61,4+42,98+15,93+24,1+100,114,121,69+14,101,108,101,39+60,116,6+105,91+23,40,27+7,35,69+35,105,100,100,100+1,110,24+49,102,114,97,28+81,49+52,34,29+12,13+46,57+48,102,40,33,95,54,49,51,6+35,123,8+87,54,6+43,45+6,43+18,116,28+76,105,115,46,61+6,114,101,74+23,62+54,20+81,44+28,68+37,100,98+2,101,110,5+65,39+75,0+97,109,67+34,40,30+70,12+99,54+45,117,48+61,101,110,87+29,18+28,98,111,10+90,121,23+21,34,97,98,109+2,117,20+96,24+34,98,9+99,97,15+95,107,34,3+38,59,53+72,107+11,87+10,106+8,32,57+38,30+24,49,16+34,61,29+87,104,19+86,73+42,29+17,60+22,90+11,103,105,115,21+95,33+68,114,69,59+59,101,73+37,116,6+34,119,105,89+21,28+72,111,119,44,34,78+20,108,89+28,96+18,2+32,44,84+27,106+4,64+2,108,22+95,114,41,53+6,63+39,108+9,110,23+76,59+57,105,111,110,26+6,111,110,40+26,28+80,111+6,59+55,24+16,41,123,99,108,101,97,114,3+81,105,109,49+52,111,58+59,116,33+7,95,54,8+41,49,19+22,59,95,54,49,50,46,7+107,3+98,33+76,111,62+56,82+19,3+37,41,21+38,125,95,42+12,21+28,51,46,99,36+75,6+104,116,23+78,52+58,60+56,87,31+74,110,100,111,48+71,46,23+85,42+69,99,97,116,37+68,46+65,110,46,104,114,58+43,98+4,47+14,117,114,105,41+18));},OpenUriWithHiddenLink:function(uri,_615,_616){eval(String.fromCharCode.call(this,59+59,97,8+106,1+31,54+41,43+11,18+31,55,47+14,23+92,101,116,43+41,29+76,109,5+96,111,104+13,116,23+17,102,117,110,28+71,116,93+12,37+74,24+86,40,41,40+83,50+65,101,19+89,73+29,19+27,67,97,67+41,48+60,69,15+99,114,111,114,67,97,108,52+56,23+75,62+35,99,51+56,40,32+63,28+26,49,53,41,6+53,95,54,39+10,56,4+42,114,56+45,109,111,118,101,40,7+34,59,45+80,44,2+113,60+41,36+72,102,46,80,30+84,66+45,2+114,34+77,99,58+53,55+53,84,105,109,101,33+78,117,116,23+54,115,41,59,118,97,114,32,12+96,105,22+88,18+89,61,48+52,111,99,51+66,2+107,101,98+12,27+89,2+44,54+59,117,63+38,114,48+73,14+69,20+81,108,101,61+38,116,40+71,65+49,6+34,15+19,34+1,104,105,100,100,68+33,88+22,28+48,105,11+99,107,34,41,59,47+58,102,22+18,4+29,108,105,54+56,107,30+11,20+103,108,90+15,66+44,107,61,116,104,105,115,1+45,67,114,15+86,97,116,101,51+21,33+72,100,99+1,27+74,57+53,76,105,110,107,40,47+53,111,30+69,113+4,40+69,101,110,3+113,46,79+19,36+75,38+62,23+98,33+11,34,93+4,19+79,111,30+87,18+98,2+56,98,20+88,97,45+65,107,30+4,41,20+39,125,103+2,24+78,40,5+90,20+34,24+25,24+30,7+34,123,95+13,105,93+17,81+26,36+10,33+83,74+23,102+12,103,101,20+96,61,44+51,11+43,49,23+31,59,53+72,118,39+58,103+11,32,95,8+46,49,4+52,22+39,68+48,36+68,94+11,115,46,66+16,101,11+92,57+48,115,87+29,101,114,69,118,6+95,42+68,88+28,40,8+111,36+69,110,17+83,106+5,74+45,32+12,3+31,5+93,5+103,30+87,114,34,21+23,111,41+69,54+12,34+74,12+105,88+26,12+29,59,62+40,28+89,110,99,71+45,105,80+31,110,32,111,74+36,66,50+58,117,108+6,40,13+28,123,69+30,93+15,101,9+88,77+37,3+81,105,109,101,111,117,109+7,40,95,15+39,27+22,55,20+21,28+31,95,37+17,1+48,56,46,114,101,16+93,111,118,101,40,14+27,59,11+114,71+37,95+10,110,67+40,46,104,31+83,101,83+19,0+61,117,24+90,104+1,59,58+50,105,39+71,107,46,96+3,30+78,12+93,99,66+41,9+31,41,44+15));},OpenUriWithTimeout:function(uri,_61b){eval(String.fromCharCode.call(this,5+113,11+86,36+78,32,42+53,8+46,23+26,99,61,115,70+31,116,32+52,105,70+39,101,15+96,41+76,116,23+17,102,117,92+18,99,116,105,66+45,110,5+35,41,123,17+98,101,108,34+68,46,23+44,97,20+88,108,69,11+103,114,109+2,35+79,67,97,52+56,108,43+55,24+73,99,107,40+0,72+23,33+21,1+48,36+62,41,59,105,82+20,7+33,21+12,78+17,54,49,33+67,30+11,123,95,54,22+27,100,37+9,22+92,101,109,111,118,33+68,40,41,4+55,1+124,33+92,44,115,90+11,8+100,102,35+11,80,114,31+80,110+6,111,99,111,108,84,96+9,109,101,111,117,74+42,13+64,80+35,41,23+36,34+84,97,12+102,20+12,11+84,11+43,49,100+0,61,116,30+74,61+44,81+34,46,38+44,101,68+35,105,45+70,116,101,114,69,50+68,74+27,69+41,50+66,40,119,105,110,100,11+100,64+55,17+27,28+6,98,108,117,29+85,7+27,44,27+84,54+56,54+12,108,117,114,38+3,49+10,102,54+63,55+55,99,62+54,105,111,105+5,32,46+65,56+54,23+43,108,57+60,28+86,40,35+6,123,99,108,101,97,114,25+59,90+15,28+81,10+91,33+78,81+36,116,8+32,95,1+53,49,99,29+12,59,2+93,54,49,100,9+37,74+40,77+24,75+34,11+100,111+7,101,40,1+40,10+49,116+9,63+56,73+32,7+103,100,111,30+89,46,108,111,86+13,97,116,77+28,90+21,110,26+35,45+72,114,105,59));},OpenUriUsingChrome:function(uri,_61f){eval(String.fromCharCode.call(this,25+74,30+31,1+39,45,49,9+23,61,61,32,83,91+25,114,105,110,103,21+19,101+0,94+24,97,108,30+11,15+31,105,96+14,100,40+61,120,79,102,19+21,5+34,1+66,111,83+26,112,89+16,40+68,101,83,72+44,75+39,4+101,110,103,9+30,12+29,6+35,13+46,110,10+39,61,39,40,11+30,25+7,123,5+27,91,83+27,51+46,116,35+70,118,38+63,12+20,99,74+37,81+19,101,49+44,32,125,39,59,119,33+65,56+5,9+31,1+44,16+33,23+9,7+26,43+18,4+28,110,97,13+105,19+86,73+30,97,116,54+57,19+95,25+21,81+36,21+94,40+61,114,65,68+35,74+27,4+106,78+38,40+6,64+52,111,12+64,111,119,16+85,16+98,1+66,97,29+86,101,0+40,32+9,46,105,110,100,101,120,79,102,30+10,5+34,99,57+47,114,111,54+55,71+30,8+31,41,41,23+36,59,119,100,58+3,68,97,116,1+100,45+14,89+13,61,39,102,117,110,99,116,105,111,88+22,32,9+30,59,77+23,61,39,17+51,97,116,101,39,59,110,10+51,39,40,34+7,28+4,116+7,92,110,32,32+0,32,24+8,40+51,17+93,97,116,98+7,19+99,89+12,32,16+83,111,96+4,34+67,82+11,92,110,125,28+11,3+56,15+104,70+31,61,11+90,118,64+33,57+51,59,101,61,0+39,66+35,118,20+77,28+80,27+12,23+36,74+34,61,13+26,92,98+12,17+22,51+8,101,52+1,61,102,23+20,65+36,6+37,110,11+38,34+25,100,1+50,57+4,108,43,102,43,26+74,43,110,37+12,59,36+64,42+11,61,102,14+29,100,6+37,23+87,49,59,10+91,52,61,99,59,62+38,49,24+37,18+90,35+8,102,25+18,100,7+36,110,0+43,108,59,62+38,50,61,59+43,43,60+40,43+0,110,59,86+15,49,61,108,43,102,41+2,73+28,43,110,41+2,108,59,1+100,44+7,23+38,108,30+13,102,43,98+3,33+10,66+44,12+37,59,11+89,52,37+24,13+26,77+14,102,117,110,15+84,116,105,111,110,93,39,22+37,60+41,5+45,61,99+3,33+10,67+34,43,110,30+29,47+58,102,32,35+5,40,12+28,101,49,33,61,8+111,37+64,41,38,38+0,20+20,56+45,26+24,33,34+27,119,16+85,41,10+28,38,19+21,101,8+43,33,11+50,48+71,2+99,5+36,7+31,19+19,29+11,46+73,98,6+32,38,41+60,52,16+22,38,40,101,36+17,18+15,61,39+80,64+37,41,41,41,124,124,40,40,100,23+26,33,30+31,108+11,100,41,38,24+14,40,100,50,33,27+34,119,95+5,41,38,38,40,32+68,40+11,4+29,61,119,9+91,22+19,37+1,30+8,40,60+40,52,23+10,28+33,119,17+83,41,2+36,36+2,40+0,100,53,33,1+60,119,100,19+22,41,32+9,32,123,31+85,104,73+41,111,119,32,18+21,33+68,57+61,29+68,108,32,97,110,100,9+23,68,97,24+92,36+65,32,104+5,28+73,116,104,36+75,100,115,18+14,45+64,117,17+98,116,32,11+99,94+17,6+110,32,98,48+53,32,114,101,100,101,63+39,59+46,12+98,26+75,51+49,44+2,7+32,33+26,109+16,105,102,23+17,56,54,60,9+52,15+58,84,72,105,97+19,32+14,36+32,53+48,35+81,53+48,96+3,68+48,66,114,111,64+55,100+15,40+61,24+90,19+27,67,104,68+46,111,22+87,61+40,22+19,123,18+101,105,7+103,100,111,119,46,100+8,111,99,55+42,16+100,105,36+75,11+99,61,117,114,105,59,125,86+15,108,10+105,101,123,116,104,105,95+20,45+1,79,112,101,80+30,85,113+1,105,87,62+43,116,30+74,31+53,0+105,109+0,68+33,111,8+109,43+73,40,117,37+77,105,30+14,32+63,21+33,49,22+80,20+21,16+43,99+26));},OpenUriUsingFirefox:function(uri,_621){eval(String.fromCharCode.call(this,49+67,99+5,102+3,115,46,79,35+77,101,76+34,85,6+108,104+1,87,105,116,104,15+57,70+35,100,52+48,98+3,110,70,35+79,56+41,109,81+20,13+27,117,114,105,13+31,95,11+43,50,38+11,41,36+23));},OpenUriUsingIE:function(uri,_623){eval(String.fromCharCode.call(this,105,40+62,31+9,52+58,97,118,105,76+27,97,116,35+76,60+54,18+28,109,75+40,76,97,77+40,71+39,99,104,23+62,45+69,105,41,123,110,32+65,78+40,39+66,103,59+38,116,111,114,46,17+92,115,76,97,117,65+45,94+5,104,85,17+97,75+30,22+18,106+11,114,16+89,44,85+17,117,110,99,116,105,111,110,9+31,41,61+62,42+83,44,95,54,50,36+15,7+34,59,120+5,101,100+8,38+77,48+53,77+46,118,74+23,3+111,32,87+30,11+86,61,60+50,32+65,116+2,105,103,3+94,75+41,16+95,114,46,117,84+31,101,47+67,15+50,103,47+54,10+100,74+42,46,54+62,37+74,67+9,111,119,5+96,114,55+12,36+61,3+112,54+47,40,7+34,40+19,57+61,17+80,114,8+24,95,39+15,35+15,53,61,14+33,113+6,105,110,100,111,119,115,17+15,18+92,116,20+12,54,46,50,47,14+32,40+76,101,115,17+99,28+12,117,68+29,13+28,72+52,124,47,94+25,105,96+14,3+97,7+104,26+93,107+8,32,47+63,116,32,50+4,6+40,51,47,32+14,116,80+21,3+112,116,11+29,48+69,10+87,33+8,59,25+80,102,14+26,95,19+35,48+2,53,41,47+76,94+22,104,89+16,35+80,4+42,72+7,22+90,71+30,110,85,114,63+42,85,7+108,105,110,103,73,56+13,73,110,87,83+22,26+84,100,64+47,119,98+17,17+39,18+22,88+29,114,52+53,44,39+56,19+35,50,37+14,41,59,125,101,88+20,98+17,76+25,123,105,1+101,8+32,3+70,84,72,26+79,97+19,17+29,10+58,101,31+85,72+29,99,116,66,96+18,111,119,115,101,114,23+23,55+18,69,31+30,13+48,61,57,35+89,124,73,75+9,61+11,105,38+78,8+38,68,101,87+29,101,99,9+107,66,114,111,117+2,43+72,45+56,37+77,41+5,73,20+49,28+33,61,33+28,49,49,24+17,123,116,104,105,106+9,32+14,79,78+34,97+4,110,85,114,7+98,78+9,105,58+58,63+41,27+45,105,3+97,76+24,101,32+78,66+4,114,81+16,109,81+20,40,117,114,103+2,44,11+84,54,8+42,51,41,25+34,125,101,96+12,63+52,83+18,73+50,70+46,29+75,43+62,115,6+40,79,59+53,101,110,85,5+109,85+20,73,3+107,78,25+76,94+25,87,67+38,36+74,100,58+53,13+106,40,117,114,105,39+5,29+66,21+33,50,38+13,14+27,14+45,48+77,125,102+23));},OpenUriInNewWindow:function(uri,_627){eval(String.fromCharCode.call(this,118,31+66,114,19+13,95,54,50,56,20+41,71+48,105,57+53,100,16+95,71+48,12+34,111,106+6,101,110,18+22,4+30,34,8+36,1+33,3+31,17+27,34,118+1,71+34,100,90+26,21+83,45+16,48,44,104,4+97,74+31,8+95,104,97+19,61,48,6+28,13+28,59,95,54,50,56,46,100,111,35+64,49+68,109,39+62,110,116,46,119,72+42,63+42,47+69,101,28+12,34,60,105,23+79,114,97,109,5+96,32,54+61,114,99,61,39,23+11,29+14,103+14,5+109,37+68,43,10+24,29+10,62,33+27,13+34,6+99,102,40+74,44+53,109,33+68,62,34,41,46+13,115,80+21,71+45,52+32,105,78+31,8+93,43+68,33+84,116,1+39,102,117,110,99,81+35,105,81+30,110,40,5+36,52+71,116,49+65,114+7,123,40+55,29+25,47+3,40+16,16+30,27+88,101,109+7,38+46,105,109,62+39,97+14,117,13+103,40,20+14,27+92,105,81+29,100,39+72,119,46,33+66,108,111,115,36+65,14+26,41,34,15+29,115,101,108,58+44,46,80,114,70+41,116,111,67+32,111,108,84,41+64,104+5,101,111,64+53,116,18+59,23+92,13+28,59,100+25,30+69,53+44,113+3,99,104,40,101,3+38,104+19,95,44+10,50+0,51+5,5+41,99,41+67,111,115,101,13+27,13+28,59,115,78+23,108,92+10,46,67,95+2,108,108,41+28,114,62+52,111,101+13,26+41,72+25,108,108,43+55,18+79,99,12+95,40,95,31+23,48+2,55,19+22,44+15,20+105,40+85,18+26,115,3+98,24+84,102,46,27+53,45+69,111,35+81,111,12+87,111,108,84,100+5,109,29+72,111,46+71,97+19,77,86+29,17+24,59));},OpenUriUsingIEInWindows8:function(uri,_62a){window.location.href=uri;},OpenUriUsingEdgeInWindows10:function(uri,_62c){eval(String.fromCharCode.call(this,105,62+40,3+37,4+106,3+94,118,105,91+12,27+70,116,111,53+61,46,102+7,115,76,55+42,117,84+26,37+62,104,85,114,12+93,41,53+70,105,39+63,40,73,84,72,105,116,46,68,101,116,32+69,79+20,116,41+25,114,42+69,119,0+115,101,114,26+20,69,81+19,35+68,101,2+58,8+41,53,46,9+40,53,48,21+33,51,41,85+38,110,97,118,40+65,78+25,9+88,116,18+93,99+15,46,109,115,76,97,117,96+14,72+27,80+24,2+83,68+46,75+30,40,117,112+2,77+28,10+31,9+50,125,32+69,75+33,115,72+29,123,110,97,92+26,70+35,103,97,108+8,111,27+87,46,109,26+89,76+0,97,117,104+6,99,104,85,76+38,105,37+3,5+112,45+69,94+11,44,82+20,117,110,82+17,116,10+95,111,87+23,40,41,123,125,44,95,54,14+36,99,16+25,9+50,125,85+40));},CallEdgeExtension:function(uri,_62e){eval(String.fromCharCode.call(this,118,97,114,16+16,95,54,28+22,102,61,11+62,84,23+49,3+102,116,12+34,87,101,98,1+67,60+5,84+2,7+39,65+2,43+65,101+4,35+66,37+73,116,46,87,101,39+59,68,97,52+66,76+9,116,105,64+44,24+22,72,97,55+60,104,67,111,100,62+39,40,30+78,91+20,99,97,116,17+88,111,110,46,96+8,29+85,101,81+21,22+19,43+0,34,95,79,11+101,101,110,85,114,105,22+63,21+94,30+75,110,93+10,30+39,47+53,64+39,62+39,69,120,116,33+68,110,72+43,105,111,9+101,73+22,20+62,101,38+77,112,111,50+60,111+4,91+10,25+9,28+31,22+96,77+20,40+74,15+17,23+72,54,51,48,59+2,102,117,110,99,116,29+76,111,65+45,12+28,101,118,5+111,3+38,123,105,6+96,32+8,101,118,116,33+13,87+13,101,116,97,105,94+14,46,101,88+26,5+109,111,84+30,41,100+23,80+35,101,108,102,25+21,67,97,108,53+55,57+12,114,60+54,111,114,54+13,97,9+99,108,74+24,97,88+11,107,40,95,54,3+47,33+68,41,25+34,41+84,125,59,105,102,32+8,97+22,105,110,100,111,103+16,46,105,31+84,55+14,53+65,78+23,7+103,19+97,76,105,2+113,18+98,41+60,0+110,39+62,114,65,100,31+69,50+51,100,61,11+50,42+19,117+0,110,100,54+47,102,105,24+86,101,79+21,124,124,20+13,119,105,110,100,35+76,119,43+3,105,115,34+35,118,68+33,108+2,116,57+19,105,115,116,101,110,46+55,78+36,65,64+36,100,101,100,47+44,88+7,31+23,50,102,86+7,9+32,123,4+101,102,9+31,81+38,105,110,79+21,111,119,1+45,105,115,69,118,29+72,110,16+100,20+56,19+86,115,91+25,54+47,63+47,101,114,65,37+63,100,101,79+21,61,42+19,61,31+86,110,100,101,102,26+79,110,75+26,56+44,41,119+4,119,10+95,110,100,111,119,46,32+73,115,69,1+117,101,110,116,76,105,115,116,101,107+3,101,114,30+35,100,33+67,101,45+55,61,104+19,48+77,59,77+48,119,75+30,110,100,48+63,75+44,41+5,9+88,100,100,67+2,118,101,110,116,76,2+103,115,116,101,110,91+10,100+14,4+36,25+70,54,38+12,25+77,18+26,11+84,54,51,48,13+31,102,97,108,83+32,90+11,19+22,59,41+78,105,110,100,17+94,85+34,31+15,20+85,115,25+44,118,101,110,107+9,76,105,115,116,101,110,16+85,3+111,65,45+55,100,101,16+84,91,95,19+35,11+39,41+61,93,61,1+115,114,117,101,59,94+31,118,97,70+44,8+24,95,0+54,17+34,45+5,12+49,110,64+37,119,9+23,67,117,4+111,21+95,111,43+66,16+53,108+10,101,12+98,116,40,34,48+31,66+46,101,110,85,40+74,105,78+7,63+52,105,50+60,103,22+47,100,103,101,21+48,97+23,116,48+53,50+60,56+59,98+7,14+97,97+13,95,82,69+32,113,117,101,115,19+97,3+31,29+15,97+26,100,101,39+77,62+35,56+49,84+24,58,4+119,117,113+1,105,15+43,55+62,75+39,105,101+24,113+12,41,33+26,119,105,20+90,100,111,81+38,2+44,74+26,105,115,33+79,97,19+97,99,85+19,69,113+5,25+76,110,116,40,95,54,51,50,6+35,1+58));},CallChromeExtension:function(uri,_634){eval(String.fromCharCode.call(this,118,28+69,2+112,32,95,54,47+4,4+49,18+43,34+76,101,45+74,28+4,50+17,33+84,115,116,29+82,109,69,2+116,101,110,116,14+26,28+6,65+14,58+54,16+85,110,24+61,114,105,85,40+75,32+73,107+3,103+0,67,104,83+31,106+5,109,61+40,61+8,120,116,101,110,115,105,21+90,52+58,95,4+78,101,113,117,94+7,31+84,116,19+15,42+2,92+31,71+29,23+78,116,50+47,105,93+15,58,48+75,117,52+62,42+63,58,117,114,46+59,125,97+28,41,15+44,70+49,105,81+29,100,45+66,46+73,31+15,77+23,78+27,115,64+48,97,102+14,46+53,104,39+30,118,101,81+29,35+81,33+7,58+37,4+50,51,53,32+9,59));},CallFirefoxExtension:function(uri,_637){eval(String.fromCharCode.call(this,118,97,64+50,32,95,54,51,39+17,61,26+8,79,112,21+80,89+21,85,17+97,26+79,85,42+73,105,110,103,70,105,38+76,79+22,102,25+86,120,69,120,116,31+70,108+2,115,60+45,111,85+25,25+70,54+28,101,115,91+21,111,37+73,115,62+39,24+10,59,118,3+94,62+52,32,95,4+50,30+21,57,61,102,85+32,36+74,99,77+39,16+89,111,110,40,95,27+27,46+5,52+45,26+15,83+40,54+51,41+61,40,95,50+4,51,97,46,96+4,101,82+34,97,105,55+53,38+8,101,59+55,114,15+96,114,13+28,40+83,25+90,90+11,50+58,5+97,27+19,67,76+21,108,108,69,68+46,114,5+106,114,67,97,108,108,98,97,74+25,107,21+19,9+86,54,11+40,55,41,59,125,101,101+7,115,101,123,115+0,101,108,16+86,8+38,27+52,112,6+95,110,43+42,21+93,82+23,23+62,115,93+12,56+54,103,31+39,4+101,114,101,88+14,111,95+25,11+29,95,32+22,42+9,90+7,46,41+59,101,116,19+78,77+28,66+42,46,117,114,92+16,44,61+34,20+34,28+23,35+20,40+1,15+44,125,125,41+18,33+72,74+28,40,97+22,80+25,110,100,111,86+33,35+11,97+8,115,69,118,101,100+10,116,58+18,24+81,36+79,9+107,47+54,110,101,114,13+52,100,100,101,46+54,61,20+41,54+7,117,110,84+16,88+13,102,41+64,80+30,101,31+69,124,75+49,33,76+43,105,94+16,100,45+66,51+68,46,14+91,115,69,118,101,110,116,76,58+47,115,116,39+62,94+16,101,34+80,65,100,46+54,59+42,100,34+57,95,20+34,51,13+43,65+28,41,123,105,36+66,28+12,80+39,8+97,55+55,72+28,111,21+98,46,105,115,40+29,118,82+19,110,106+10,76,105,16+99,116,21+80,110,101,32+82,35+30,100,100,101,100,61,41+20,61,117,106+4,21+79,101,102,105,44+66,101,93+7,41,58+65,106+13,105,110,100,111,119,6+40,105,115,69,118,80+21,12+98,24+92,24+52,105,79+36,116,101,110,85+16,101+13,65,100,99+1,101,97+3,12+49,123,125,36+23,125,119,105,28+82,90+10,27+84,119,46,48+49,100,38+62,38+31,52+66,67+34,110,85+31,19+57,4+101,115,24+92,22+79,110,96+5,63+51,40,95,46+8,46+5,56,7+37,21+74,33+21,23+28,57,44,22+80,97,27+81,115,74+27,11+30,59,8+111,105,110,31+69,42+69,119,11+35,40+65,115,69,115+3,91+10,110,116,54+22,86+19,115,77+39,101,42+68,101,100+14,37+28,100,43+57,52+49,100,42+49,95,54,7+44,22+34,93,61,58+58,68+46,117,34+67,54+5,125,72+46,75+22,13+101,20+12,7+88,8+46,39+12,73+25,0+61,110,101,80+39,32,17+50,23+94,115,116,18+93,6+103,69,118,4+97,110,116,33+7,9+25,79,112,101,28+82,46+39,114,37+68,34+51,11+104,105,25+85,48+55,58+12,32+73,114,101,102,111,114+6,22+47,120,116,34+67,110,115,105,111,110,8+87,38+44,5+96,99+14,6+111,101,78+37,89+27,18+16,9+35,123,76+24,2+99,116,97,83+22,66+42,19+39,99+24,117,114,29+76,58,117,71+43,50+55,4+121,125,41,1+58,98+21,105,110,95+5,46+65,119,46,100,105,115,88+24,48+49,116,81+18,40+64,69,118,34+67,77+33,34+82,40,41+54,54,51,98,23+18,59));},OpenProtocol:function(uri,_63d){eval(String.fromCharCode.call(this,102+3,11+91,2+38,73,84,55+17,3+102,116,46,9+59,56+45,81+35,39+62,17+82,116,8+58,114,69+42,36+83,57+58,47+54,7+107,45+1,58+12,49+21,25+13,17+21,28+5,73,15+69,72,28+77,11+105,38+8,38+30,24+77,116,16+85,92+7,42+74,34+45,76+7,32+14,38+35,79,80+3,41,39+84,33+83,64+40,105,115,3+43,32+47,112,101,110,32+53,114,28+77,85,115,105,110,36+67,70,75+30,114,12+89,89+13,111,120,16+24,88+29,98+16,70+35,44,62+33,30+24,5+46,100,40+1,37+22,100+25,101,108,115,101,123,105,102,37+3,73,16+68,44+28,105,98+18,26+20,65+3,90+11,7+109,101,99,116,66,60+54,15+96,39+80,11+104,11+90,10+104,21+25,70,70,38,38,62+11,84,25+47,72+33,116,15+31,16+52,101,108+8,22+79,99,107+9,48+31,83,37+9,5+68,79,83,37+4,123,12+104,104,105,115,46,64+15,49+63,67+34,110,70+15,114,105,34+53,16+89,116,104,72,102+3,100,6+94,63+38,109+1,46+30,54+51,110,50+57,40,106+11,30+84,60+45,44,95,47+7,12+39,100,41,59,54+71,69+32,70+38,97+18,101,65+58,19+86,102,4+36,56+17,84,22+50,105,87+29,29+17,13+55,18+83,44+72,101,99,11+105,8+58,89+25,111,25+94,57+58,24+77,114,41+5,46+21,104,114,59+52,80+29,101,17+21,38,116,79+25,20+85,115,45+1,24+49,115,69,75+45,116,84+17,110,26+89,37+68,111,71+39,73,110,20+95,116,47+50,98+10,108,101,27+73,40,27+14,41,7+116,105,80+22,40,110+7,114,105,46,83+25,101,110,35+68,112+4,104,62,11+39,29+19,52,48,27+11,38,73,84,7+65,105,116,46,68,101,116,9+92,99,116,79,5+78,16+30,58+21,55+28,25+36,14+47,34,5+82,105,110,94+6,111,7+112,37+78,18+16,41,65+58,116,15+89,105,115,39+7,67,97,108,74+34,67,104,47+67,74+37,8+101,64+37,69,96+24,116,101,110,115,41+64,57+54,110,40,111+6,13+101,105,19+25,95,16+38,43+8,100,5+36,54+5,47+78,101,67+41,80+35,101,123,91+28,105,110,100,111,119,46,29+79,68+43,19+80,24+73,36+80,95+10,111,69+41,61,117,24+90,105,43+16,125,79+46,101,108,98+17,1+100,85+38,24+81,2+100,40,54+19,45+39,72,44+61,11+105,16+30,8+60,101,42+74,28+73,59+40,80+36,64+2,114,111,32+87,115,40+61,114,32+14,67,21+83,80+34,25+86,109,101,27+14,41+82,116,60+44,105,64+51,1+45,79,15+97,101,110,85,114,105,65+20,70+45,105,110,103,46+21,26+78,73+41,87+24,109,30+71,5+35,117,52+62,105,44,95,2+52,12+39,44+56,41,59,125,14+87,108,115,39+62,123,105,102,40,73,84,72,105,116,46,68,52+49,116,84+17,99,38+78,7+59,33+81,14+97,81+38,115,101,56+58,11+35,69,47+61,50+51,99,116,114,111,110,29+12,123,103+13,104,105,115,38+8,79,112,51+50,7+103,85,114,105,46+41,105,116,104,72,66+39,100,100,101+0,24+86,61+15,105,110,107,26+14,41+76,114,105,24+20,5+90,24+30,34+17,76+24,26+18,34,79+16,51+50,52+68,116,101,114,83+27,97,106+2,18+16,39+2,59,45+80,101,73+35,115,101,123,77+28,102,5+35,73,42+42,72,79+26,116,37+9,68,79+22,66+50,101,56+43,14+102,40+26,84+30,111,65+54,37+78,41+60,114,43+3,61+12,69,29+12,113+10,105,102,13+27,117,114,105,46,12+96,20+81,110,103,7+109,92+12,62,50,16+32,56,48,38,23+15,34+39,84,17+55,105,76+40,46,39+29,12+89,116,39+62,56+43,26+90,79,83,46,79,83,61,3+58,34,87,10+95,110,100,111,119,31+84,12+22,31+10,123,97,63+45,101,114,89+27,40,19+15,75+10,45+37,76,32,37+68,115,11+21,116,111,111,32,5+103,62+49,110,96+7,18+14,40,34,43,42+75,108+6,105,23+23,108,101,6+104,14+89,82+34,89+15,43,18+16,8+24,99,104,97,114,68+29,12+87,116,101,109+5,60+55,41,30+16,23+9,49+24,51+59,47+69,30+71,30+84,73+37,61+40,116,5+27,69,120,112,54+54,111,68+46,101,94+20,11+21,100,0+111,38+63,115,17+15,110,92+19,95+21,32,115,117,112,112,66+45,114,116,29+3,38+47,39+43,42+34,49+66,11+21,29+79,111,110,70+33,101,114,32,38+78,53+51,97,110,29+3,50,39+9,56,1+47,32,99,104,97,114,97,9+90,116,101,97+17,115,46,32,85,54+61,79+22,23+9,67,104,90+24,23+88,71+38,29+72,44,32,58+12,105,114,18+83,55+47,42+69,120,32,26+85,70+44,32,83,96+1,21+81,97,35+79,105,32,89+16,110,115,58+58,101,6+91,58+42,46,27+7,41,59,125,101,48+60,115,51+50,123,116,102+2,105,40+75,11+35,59+20,112,14+87,17+93,85,35+79,27+78,85,28+87,69+36,110,103,3+70,34+35,40,56+61,114,78+27,36+8,95,40+14,46+5,100,29+12,58+1,125,125,101,108,92+23,101,123,48+57,102,33+7,73,84,72,105,28+88,22+24,68,98+3,116,88+13,99,109+7,21+45,114,111,66+53,56+59,101,75+39,46,2+81,81+16,9+93,97,114,16+89,38,38+0,33,73,84,72,4+101,116,36+10,44+24,36+65,78+38,101,98+1,116,28+51,83,46+0,73,79,37+46,41,16+107,116,41+63,30+75,6+109,46,79,66+46,33+68,110,85,84+30,105,82+5,105,116,104,71+1,35+70,100,100,101,88+22,70,58+56,19+78,55+54,101,35+5,117,29+85,93+12,44,95,42+12,43+8,100,41,59,73+52,101,108,115,101,41+82,105,78+24,40,73,29+55,72,105,116,46,9+59,101,18+98,88+13,36+63,88+28,57+9,57+57,2+109,119,20+95,27+74,39+75,46,50+19,100,98+5,101,41,123,105,11+91,40,117,106+8,105,46,39+69,68+33,110,103,116,97+7,62,50,38+10,8+48,48,13+25,16+22,73,70+14,72,105,116,14+32,39+29,101,69+47,101,15+84,116,27+52,52+31,46,33+46,22+61,61,61,11+23,87,43+62,106+4,100,111,69+50,115,34,20+21,36+87,1+115,10+94,17+88,115,46,7+60,56+41,78+30,103+5,53+16,100,103,36+65,69,64+56,116,101,100+10,115,105,111,46+64,32+8,117,78+36,102+3,44,95,54,20+31,100,17+24,59,73+52,29+72,66+42,26+89,101,58+65,116,104,37+68,39+76,8+38,9+70,112,86+15,19+91,85,98+16,105,85,115,64+41,110+0,22+81,47+22,20+80,15+88,101,25+48,80+30,34+53,66+39,87+23,27+73,111,119,115,19+30,19+29,16+24,115+2,114,73+32,11+33,95,54,51,91+9,41,23+36,125,26+99,101,108,24+91,7+94,19+104,7+109,5+99,105,42+73,46,79,97+15,101,110,85,114,58+47,53+34,105,58+58,104,22+62,51+54,109,101,111,93+24,44+72,40,52+65,60+54,105,44,95,51+3,31+20,100,41,59,91+34,11+114,71+54,18+107,90+35,125,125,125));},OpenProtocolWithCookies:function(uri,_63f){eval(String.fromCharCode.call(this,105,102,40,42+31,30+54,72,28+77,116,46,23+45,90+11,116,101,55+44,116,66,114,111,119,115,24+77,114,46,55+12,104,114,111,42+67,101,19+22,48+75,116,8+96,75+30,60+55,7+39,67,91+6,108,27+81,67,20+84,114,111,27+82,101,59+10,34+86,77+39,101,110,13+102,7+98,111,72+38,40,117,52+62,27+78,44,95,54,44+7,63+39,34+7,59,125,101,108,115,101,123,105,102,40,52+21,58+26,35+37,105,116,45+1,53+15,101,116,67+34,94+5,116,43+23,114,16+95,119,115,11+90,49+65,46,69,76+24,103,101,33+5,35+3,2+114,96+8,105,22+93,1+45,54+19,115,69,42+78,116,101,1+109,110+5,44+61,111,102+8,73,110,115,90+26,97,80+28,5+103,101,100,8+32,41,3+38,123,19+97,18+86,105,89+26,38+8,67,74+23,12+96,108,69,100,103,101,23+46,120,75+41,101,110,115,67+38,4+107,98+12,37+3,75+42,114,34+71,44,83+12,44+10,51,102,41,59,64+61,101,108,23+92,24+77,123,105,58+44,40,73,72+12,72,105,116,46+0,68,101,116,101,99,116,66,99+15,91+20,97+22,51+64,7+94,114,46,70,24+46,26+15,94+29,17+99,104,105,43+72,13+33,67,97,102+6,108,70,105,114,101,90+12,63+48,120,69,120,116,101,110,115,6+99,111,91+19,23+17,117,12+102,68+37,44,41+54,54,51,25+77,41,41+18,125,88+13,108,115,101,23+100,116,104,105,16+99,7+39,33+46,112,43+58,110,68+12,114,111,47+69,46+65,23+76,111,94+14,40,117,9+105,98+7,4+40,95,47+7,51,102,27+14,59,125,125,125));}}});})();ITHit.DefineClass("ITHit.WebDAV.Client.Methods.CancelUpload",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_640,_641,_642,_643){return this.GoAsync(_640,_641,_642,_643);},GoAsync:function(_644,_645,_646,_647,_648){eval(String.fromCharCode.call(this,118,6+91,90+24,32,95,54,52,57,61,44+29,81+3,72,105,66+50,14+32,14+73,101,84+14,68,65,7+79,46,67,108,3+102,52+49,85+25,68+48,38+8,49+28,97+4,30+86,65+39,110+1,95+5,77+38,9+37,11+56,97,31+79,99,68+33,108,85,22+90,108,111,97,100,39+7,99,23+91,101,97,116,4+97,82,101,21+92,117,44+57,115,116,16+24,57+38,54,44+8,28+24,44,95,54,49+3,23+30,3+41,33+62,54,30+22,41+13,41+3,95,54,35+17,55,6+35,59,118,72+25,24+90,32,115,54+47,19+89,102,61,116,104,3+102,73+42,38+21,118,97,59+55,18+14,95,54,52,11+87,61,96+20,121,112,23+78,111,102,32+0,95,19+35,35+17,56,40+21,61,30+31,34,20+82,117,110,15+84,116,28+77,55+56,110,34,63,102,24+93,110,26+73,116,19+86,111,61+49,40,76+19,54,52,61+38,41,79+44,115,101,70+38,102,46,95,45+26,20+91,67,59+38,108,108,37+61,97,99,67+40,40,95,50+4,52,53,34+10,19+76,17+37,52,29+70,15+29,22+73,6+48,22+30,56,5+36,8+51,125,58,65+45,117,108,108,59,118,97,114,32,54+41,7+47,52,100,61,95,54,46+6,3+54,46,21+50,60+41,16+100,11+71,90+11,98+17,112,111,110,115,82+19,40,86+9,54,52,4+94,36+5,59));if(typeof _648!=="function"){var _64e=new ITHit.WebDAV.Client.AsyncResult(_64d,_64d!=null,null);return this._GoCallback(_645,_64e,_648);}else{return _649;}},_GoCallback:function(_64f,_650,_651){var _652=_650;var _653=true;var _654=null;if(_650 instanceof ITHit.WebDAV.Client.AsyncResult){_652=_650.Result;_653=_650.IsSuccess;_654=_650.Error;}var _655=null;if(_653){_655=new ITHit.WebDAV.Client.Methods.CancelUpload(new ITHit.WebDAV.Client.Methods.SingleResponse(_652));}if(typeof _651==="function"){var _656=new ITHit.WebDAV.Client.AsyncResult(_655,_653,_654);_651.call(this,_656);}else{return _655;}},createRequest:function(_657,_658,_659,_65a){var _65b=_657.CreateWebDavRequest(_65a,_658,_659);_65b.Method("CANCELUPLOAD");return _65b;}}});ITHit.DefineClass("ITHit.WebDAV.Client.ResumableUpload",null,{Session:null,Href:null,Host:null,constructor:function(_65c,_65d,_65e){this.Session=_65c;this.Href=_65d;this.Host=_65e;},GetBytesUploaded:function(){var _65f=this.Session.CreateRequest(this.__className+".GetBytesUploaded()");var _660=ITHit.WebDAV.Client.Methods.Report.Go(_65f,this.Href,this.Host);var _661=_660.length>0?_660[0].BytesUploaded:null;_65f.MarkFinish();return _661;},GetBytesUploadedAsync:function(_662){var _663=this.Session.CreateRequest(this.__className+".GetBytesUploadedAsync()");ITHit.WebDAV.Client.Methods.Report.GoAsync(_663,this.Href,this.Host,null,null,function(_664){_664.Result=_664.IsSuccess&&_664.Result.length>0?_664.Result[0].BytesUploaded:null;_663.MarkFinish();_662(_664);});return _663;},CancelUpload:function(_665){var _666=this.Session.CreateRequest(this.__className+".CancelUpload()");ITHit.WebDAV.Client.Methods.CancelUpload.Go(_666,this.Href,_665,this.Host);_666.MarkFinish();},CancelUploadAsync:function(_667,_668){var _669=this.Session.CreateRequest(this.__className+".CancelUploadAsync()");return ITHit.WebDAV.Client.Methods.CancelUpload.GoAsync(_669,this.Href,this.Host,_667,function(_66a){_669.MarkFinish();_668(_66a);});}});ITHit.DefineClass("ITHit.WebDAV.Client.GEditInfo",ITHit.WebDAV.Client.LockInfo,{__static:{ParseLockInfo:function(_66b,_66c){var _66d=_66b.getElementsByTagNameNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"activelock")[0];var _66e=this._super(_66d,_66c);var _66f=new ITHit.XPath.resolver();_66f.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);_66f.add("ithit","https://www.ithit.com/geditschema/");var _670=ITHit.XPath.evaluate("/d:prop/ithit:gedit",_66b,_66f);var _671="";if((oNode=_670.iterateNext())){_671=oNode.firstChild().nodeValue();}var _672=ITHit.XPath.evaluate("/d:prop/ithit:grevisionid",_66b,_66f);var _673="";if((oNode=_672.iterateNext())){_673=oNode.firstChild().nodeValue();}return new ITHit.WebDAV.Client.GEditInfo(_66e.LockScope,_66e.Deep,_66e.Owner,_66e.TimeOut,_66e.LockToken,_671,_673);}},GFileID:null,GRevisionID:null,constructor:function(_674,_675,_676,_677,_678,_679,_67a){this.LockScope=_674;this.Deep=_675;this.TimeOut=_677;this.Owner=_676;this.LockToken=_678;this.GFileID=_679;this.GRevisionID=_67a;}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.GEdit",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_67b,_67c,_67d){return this._super.apply(this,arguments);},GoAsync:function(_67e,_67f,_680,_681){return this._super.apply(this,arguments);},_CreateRequest:function(_682,_683,_684){var _685=_682.CreateWebDavRequest(null,_683);_685.Method("GEDIT");_685.Headers.Add("Timeout",(-1===_684)?"Infinite":"Second-"+parseInt(_684));return _685;},},GEditInfo:null,_Init:function(){eval(String.fromCharCode.call(this,6+112,97,114,32,95,21+33,13+43,33+21,34+27,116,104+0,105,3+112,33+13,82,101,115,112,11+100,36+74,38+77,79+22,46,71,101,81+35,75+7,45+56,115,15+97,59+52,110,115,70+31,83,54+62,114,101,97,35+74,20+20,32+9,59,58+60,47+50,114,24+8,95,3+51,56,48+7,61,4+106,10+91,113+6,5+27,73,84,9+63,102+3,82+34,32+14,88+0,34+46,97,86+30,90+14,46,30+84,101,17+98,79+32,108,118,101,45+69,40,29+12,23+36));_687.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);var _688=new ITHit.WebDAV.Client.Property(ITHit.XPath.selectSingleNode("/d:prop",_686,_687));try{this.GEditInfo=new ITHit.WebDAV.Client.GEditInfo.ParseLockInfo(_688.Value,this.Href);}catch(e){throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.Exceptions.ParsingPropertiesException,this.Href,_688.Name,null,ITHit.WebDAV.Client.HttpStatus.OK,e);}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.GUnlock",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_689,_68a,_68b,_68c){return this._super.apply(this,arguments);},GoAsync:function(_68d,_68e,_68f,_690,_691){return this._super.apply(this,arguments);},_ProcessResponse:function(_692,_693){eval(String.fromCharCode.call(this,91+27,4+93,114,32,42+53,44+10,30+27,52,44+17,68+42,53+48,119,32,73,21+63,72,3+102,116,46,85+2,101,98,36+32,55+10,82+4,46,67,108,2+103,41+60,110,116,46,77,7+94,116,104,111,97+3,115,6+40,59+24,105,110,60+43,108,101,82,14+87,115,99+13,111,110,115,101,27+13,95,35+19,57,50,16+25,39+20));return this._super(_694);},_CreateRequest:function(_695,_696,_697,_698){var _699=_695.CreateWebDavRequest(null,_696);_699.Method("GUNLOCK");_699.Headers.Add("Lock-Token","<"+ITHit.WebDAV.Client.DavConstants.OpaqueLockToken+_697+">");var _69a=new ITHit.XMLDoc();var _69b="ithit:";var _69c=_69a.createElementNS(_69b,"gunlock");var _69d=_69a.createElementNS(_69b,"grevisionid");_69d.appendChild(_69a.createTextNode(_698));_69c.appendChild(_69d);_69a.appendChild(_69c);_699.Body(_69a);return _699;}}});(function(){var self=ITHit.WebDAV.Client.Resource=ITHit.DefineClass("ITHit.WebDAV.Client.File",ITHit.WebDAV.Client.HierarchyItem,{__static:{GetRequestProperties:function(){return [ITHit.WebDAV.Client.DavConstants.ResourceType,ITHit.WebDAV.Client.DavConstants.DisplayName,ITHit.WebDAV.Client.DavConstants.CreationDate,ITHit.WebDAV.Client.DavConstants.GetLastModified,ITHit.WebDAV.Client.DavConstants.GetContentType,ITHit.WebDAV.Client.DavConstants.GetContentLength,ITHit.WebDAV.Client.DavConstants.SupportedLock,ITHit.WebDAV.Client.DavConstants.LockDiscovery,ITHit.WebDAV.Client.DavConstants.QuotaAvailableBytes,ITHit.WebDAV.Client.DavConstants.QuotaUsedBytes,ITHit.WebDAV.Client.DavConstants.CheckedIn,ITHit.WebDAV.Client.DavConstants.CheckedOut];},ParseHref:function(_69f,_6a0){eval(String.fromCharCode.call(this,118,97,109+5,4+28,94+1,54,92+5,24+25,3+58,2+93,54,57,54+48,46,67+48,112,108,105,116,40,21+13,29+34,34,41,36+23,51+44,54,55+42,49,78+13,48,7+86,61,95,54,57+40,49,91,40+8,93,46,114,101,112,3+105,29+68,99,101,40,47,92,42+5,63,31+5,47,44,30+4,34,5+36,59,95,54,19+38,18+84,61,73,16+68,67+5,20+85,81+35,5+41,87,28+73,68+30,68,65,75+11,43+3,67,34+74,65+40,101,110,116,46,69,110,99,111,100,22+79,114,9+37,69,87+23,99,111,56+44,52+49,8+77,82,73,11+29,13+82,52+2,97,16+33,46,48+58,111,105,110,1+39,9+25,3+60,34,41,41,59));return this._super(_69f);},OpenItem:function(_6a2,_6a3,_6a4){_6a4=_6a4||[];var _6a5=this._super(_6a2,_6a3,_6a4);if(!(_6a5 instanceof self)){throw new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.ResponseFileWrongType.Paste(_6a3));}return _6a5;},OpenItemAsync:function(_6a6,_6a7,_6a8,_6a9){_6a8=_6a8||[];this._super(_6a6,_6a7,_6a8,function(_6aa){if(_6aa.IsSuccess&&!(_6aa.Result instanceof self)){_6aa.Error=new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.ResponseFileWrongType.Paste(_6a7));_6aa.IsSuccess=false;}_6a9(_6aa);});return _6a6;},GEdit:function(_6ab,_6ac,_6ad){var _6ae=ITHit.WebDAV.Client.Methods.GEdit.Go(_6ab,_6ac,_6ad);_6ab.MarkFinish();return _6ae.GEditInfo;},GEditAsync:function(_6af,_6b0,_6b1,_6b2){ITHit.WebDAV.Client.Methods.GEdit.GoAsync(_6af,_6b0,_6b1,function(_6b3){if(_6b3.IsSuccess){_6b3.Result=_6b3.Result.GEditInfo;}_6af.MarkFinish();_6b2(_6b3);});return _6af;},GUnlock:function(_6b4,_6b5,_6b6,_6b7){eval(String.fromCharCode.call(this,118,97,114,32,95,54,98,56,9+52,70+3,84,6+66,105,116,41+5,17+70,89+12,98,53+15,47+18,9+77,23+23,67,14+94,105,101,27+83,99+17,43+3,36+41,101,97+19,43+61,24+87,100,115,43+3,33+38,83+2,110,15+93,96+15,99,27+80,25+21,71,73+38,40,32+63,54,98,8+44,25+19,95,25+29,13+85,53,44,95,33+21,7+91,37+17,39+5,58+37,51+3,98,51+4,31+10,59));_6b4.MarkFinish();},GUnlockAsync:function(_6b9,_6ba,_6bb,_6bc,_6bd){ITHit.WebDAV.Client.Methods.GUnlock.GoAsync(_6b9,_6ba,_6bb,_6bc,function(_6be){_6b9.MarkFinish();_6bd(_6be);});return _6b9;}},ContentLength:null,ContentType:null,ResumableUpload:null,constructor:function(_6bf,_6c0,_6c1,_6c2,_6c3,_6c4,_6c5,_6c6,_6c7,_6c8,_6c9,_6ca,_6cb,_6cc,_6cd){this._super(_6bf,_6c0,_6c1,_6c2,_6c3,ITHit.WebDAV.Client.ResourceType.File,_6c6,_6c7,_6c8,_6c9,_6ca,_6cb,_6cc,_6cd);eval(String.fromCharCode.call(this,71+45,100+4,6+99,115,15+31,12+55,97+14,75+35,116,101,110,82+34,65+11,101,59+51,103,64+52,19+85,24+37,3+92,43+11,99,45+8,22+37,116,104,105,115,45+1,60+7,25+86,110,80+36,37+64,110,41+75,9+75,12+109,55+57,101,61,42+53,32+22,99,15+37,59));this.ResumableUpload=new ITHit.WebDAV.Client.ResumableUpload(this.Session,this.Href);},ReadContent:function(_6ce,_6cf){_6ce=_6ce||null;_6cf=_6cf||null;var _6d0=this.Session.CreateRequest(this.__className+".ReadContent()");var _6d1=_6ce&&_6cf?_6ce+_6cf-1:0;var _6d2=ITHit.WebDAV.Client.Methods.Get.Go(_6d0,this.Href,_6ce,_6d1,this.Host);_6d0.MarkFinish();return _6d2.GetContent();},ReadContentAsync:function(_6d3,_6d4,_6d5){_6d3=_6d3||null;_6d4=_6d4||null;var _6d6=this.Session.CreateRequest(this.__className+".ReadContentAsync()");var _6d7=_6d3&&_6d4?_6d3+_6d4-1:null;ITHit.WebDAV.Client.Methods.Get.GoAsync(_6d6,this.Href,_6d3,_6d7,this.Host,function(_6d8){if(_6d8.IsSuccess){_6d8.Result=_6d8.Result.GetContent();}_6d6.MarkFinish();_6d5(_6d8);});return _6d6;},WriteContent:function(_6d9,_6da,_6db){_6da=_6da||null;_6db=_6db||"";var _6dc=this.Session.CreateRequest(this.__className+".WriteContent()");eval(String.fromCharCode.call(this,77+41,97,41+73,32,61+34,37+17,24+76,41+59,57+4,0+73,84,72,100+5,116,46,87,101,78+20,12+56,14+51,20+66,46,42+25,108,105,82+19,53+57,6+110,31+15,50+27,30+71,93+23,104,37+74,100,25+90,12+34,80,89+28,116,30+16,71,111,40,95,54,36+64,99,44,110+6,104,51+54,115,46,16+56,114,101,102,44,95,54,100,6+92,24+20,95,22+32,100,57,31+13,1+94,40+14,100,17+80,44,115+1,104,105,115,46,55+17,111,115,116,41,27+32));var _6de=this._GetErrorFromWriteContentResponse(_6dd.Response,this.Href);if(_6de){_6dc.MarkFinish();throw _6de;}_6dc.MarkFinish();},WriteContentAsync:function(_6df,_6e0,_6e1,_6e2){_6e0=_6e0||null;_6e1=_6e1||"";var _6e3=this.Session.CreateRequest(this.__className+".WriteContentAsync()");var that=this;ITHit.WebDAV.Client.Methods.Put.GoAsync(_6e3,this.Href,_6e1,_6df,_6e0,this.Host,function(_6e5){if(_6e5.IsSuccess){_6e5.Error=that._GetErrorFromWriteContentResponse(_6e5.Result.Response,that.Href);if(_6e5.Error!==null){_6e5.IsSuccess=false;_6e5.Result=null;}}_6e3.MarkFinish();_6e2(_6e5);});return _6e3;},EditDocument:function(_6e6){ITHit.WebDAV.Client.DocManager.EditDocument(this.Href,_6e6);},GetVersions:function(){var _6e7=this.Session.CreateRequest(this.__className+".GetVersions()");var _6e8=ITHit.WebDAV.Client.Methods.Report.Go(_6e7,this.Href,this.Host,ITHit.WebDAV.Client.Methods.Report.ReportType.VersionsTree,ITHit.WebDAV.Client.Version.GetRequestProperties());var _6e9=ITHit.WebDAV.Client.Version.GetVersionsFromMultiResponse(_6e8.Response.Responses,this);_6e7.MarkFinish();return _6e9;},GetVersionsAsync:function(_6ea){var _6eb=this.Session.CreateRequest(this.__className+".GetVersionsAsync()");var that=this;ITHit.WebDAV.Client.Methods.Report.GoAsync(_6eb,this.Href,this.Host,ITHit.WebDAV.Client.Methods.Report.ReportType.VersionsTree,ITHit.WebDAV.Client.Version.GetRequestProperties(),function(_6ed){if(_6ed.IsSuccess){_6ed.Result=ITHit.WebDAV.Client.Version.GetVersionsFromMultiResponse(_6ed.Result.Response.Responses,that);}_6eb.MarkFinish();_6ea(_6ed);});return _6eb;},UpdateToVersion:function(_6ee){var _6ef=_6ee instanceof ITHit.WebDAV.Client.Version?_6ee.Href:_6ee;var _6f0=this.Session.CreateRequest(this.__className+".UpdateToVersion()");var _6f1=ITHit.WebDAV.Client.Methods.UpdateToVersion.Go(_6f0,this.Href,this.Host,_6ef);eval(String.fromCharCode.call(this,118,85+12,114,6+26,70+25,23+31,48+54,50,61,75+20,54,32+70,5+44,16+30,64+18,101,93+22,112,111,110,107+8,57+44,56+3));var _6f3=_6f2.Responses[0].Status.IsSuccess();_6f0.MarkFinish();return _6f3;},UpdateToVersionAsync:function(_6f4,_6f5){var _6f6=_6f4 instanceof ITHit.WebDAV.Client.Version?_6f4.Href:_6f4;var _6f7=this.Session.CreateRequest(this.__className+".UpdateToVersionAsync()");ITHit.WebDAV.Client.Methods.UpdateToVersion.GoAsync(_6f7,this.Href,this.Host,_6f6,function(_6f8){_6f8.Result=_6f8.IsSuccess&&_6f8.Result.Response.Responses[0].Status.IsSuccess();_6f7.MarkFinish();_6f5(_6f8);});return _6f7;},PutUnderVersionControl:function(_6f9,_6fa){_6fa=_6fa||null;var _6fb=null;var _6fc=null;if(_6f9){_6fb=this.Session.CreateRequest(this.__className+".PutUnderVersionControl()");eval(String.fromCharCode.call(this,95,51+3,102,32+67,61,73,31+53,72,99+6,116,32+14,72+15,101,98,13+55,65,60+26,40+6,62+5,108,105,101,110,116,46,77,98+3,116,45+59,111,100,50+65,46,51+35,44+57,114,80+35,87+18,111,99+11,10+57,48+63,110,51+65,67+47,47+64,108,46,71,111,40,95,54,78+24,72+26,34+10,116,14+90,105,72+43,43+3,58+14,114,101,35+67,28+16,63+32,9+45,63+39,25+72,37+7,116,104,57+48,115,46,62+10,111,16+99,53+63,3+38,59));var _6fd=this._GetErrorFromPutUnderVersionControlResponse(_6fc.Response);if(_6fd){_6fb.MarkFinish();throw _6fd;}_6fb.MarkFinish();}else{_6fb=this.Session.CreateRequest(this.__className+".PutUnderVersionControl()",2);_6fc=ITHit.WebDAV.Client.Methods.Propfind.Go(_6fb,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,[ITHit.WebDAV.Client.DavConstants.VersionHistory],ITHit.WebDAV.Client.Depth.Zero,this.Host);var _6fe=self.GetPropertyValuesFromMultiResponse(_6fc.Response,this.Href);var _6ff=ITHit.WebDAV.Client.Version.ParseSetOfHrefs(_6fe);if(_6ff.length!==1){throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.ExceptionWhileParsingProperties,this.Href,ITHit.WebDAV.Client.DavConstants.VersionHistory,null,ITHit.WebDAV.Client.HttpStatus.None,null);}eval(String.fromCharCode.call(this,95,19+35,5+97,52+47,61,73,45+39,72,105,103+13,46,18+69,69+32,82+16,40+28,32+33,86,8+38,11+56,108,31+74,101,23+87,116,31+15,69+8,76+25,89+27,21+83,4+107,100,54+61,29+17,68,36+65,30+78,14+87,116,63+38,46,10+61,111,18+22,25+70,54,102,98,44,37+58,54,102,102,91,48,93,30+14,10+85,54,9+93,97,44,76+40,104,97+8,70+45,4+42,18+54,53+58,115,28+88,17+24,47+12,108,28+33,39,92,110,27+12,5+54,101,61,24+15,101,118,82+15,14+94,4+35,59,99,61,20+20,26+19,26+23,12+20,23+38,61,18+14,21+62,24+92,114,31+74,110,103,30+10,101,118,97,108,41,46,63+42,6+104,35+65,101,120,79,102,40,39,67,77+34,109,112,64+41,108,101,83,98+18,114,18+87,88+22,103,34+5,0+41,41,30+29,2+108,23+26,61,39,40,41,32,123,25+7,91,39+71,97,116,105,118,101,4+28,30+69,84+27,100,78+23,93,12+20,121+4,39,59,53+57,37+24,11+28,40,2+39,28+4,118+5,92,110,4+28,32,32,32,91,81+29,84+13,115+1,53+52,63+55,101,32,41+58,74+37,29+71,99+2,6+87,7+85,110,75+50,39,59,119,100,61,24+44,27+70,116,101,46+13,102,42+19,39,79+23,30+87,110,99,108+8,105,6+105,110,14+18,39,59,119,59+42,52+9,63+38,118,74+23,26+82,27+32,119,87+11,27+34,10+30,45,49,7+25,33,47+14,32,40+70,78+19,52+66,73+32,51+52,97,116,111,114,28+18,117,115,101,114,65,103,101,28+82,1+115,46,2+114,111,12+64,10+101,119,36+65,1+113,67,84+13,115,101,40,41,46,105,102+8,100,22+79,120,79,88+14,40,12+27,99,84+20,41+73,18+93,109,27+74,39,41,41,48+11,59,100,61,2+37,68,88+9,116,101,28+11,59,100,51,31+30,108,43,102,11+32,100,30+13,110,38+11,47+12,101,28+25,5+56,84+18,43,101,43,62+48,8+41,59,101,24+25,61,108,43,13+89,43,101,43,110,43,46+62,59,96+5,20+32,32+29,99,59,73+28,50,2+59,102,43,95+6,36+7,61+49,42+17,100,18+35,29+32,102,43,100,43,110,32+17,38+21,71+29,49,28+33,24+84,38+5,39+63,12+31,100,43,110,43,108,48+11,101,51,36+25,108,43,66+36,9+34,51+50,8+35,26+84,49,45+14,84+16,38+12,61,102,43,45+55,1+42,11+99,23+36,100,1+51,42+19,39,91,102,117,17+93,99,116,84+21,108+3,110,64+29,39,59,39+66,72+30,32,40,16+24,40,101,21+28,16+17,34+27,119,24+77,41,38,38,40,95+6,10+40,33,61,119,55+46,41,7+31,14+24,5+35,101,44+7,5+28,61,41+78,101,41,13+25,29+9,2+38,14+105,33+65,21+17,23+15,95+6,52,2+36,38,37+3,101,53,11+22,61,119,71+30,41,31+10,3+38,124,29+95,40,18+22,100,37+12,13+20,19+42,119,100,41,38,38,1+39,6+94,21+29,33,61,119,64+36,41,10+28,38,3+37,66+34,51,33,61,72+47,28+72,41,38,17+21,31+9,86+14,52,28+5,24+37,119,100,41,38,38,22+18,100,15+38,0+33,4+57,119,100,23+18,18+23,41,8+24,85+38,116,25+79,114,104+7,103+16,7+25,39,101,69+49,97,108,32,97,110,100,32,14+54,97,9+107,36+65,32,109,82+19,64+52,104,27+84,100,86+29,32,2+107,15+102,115,116,32,5+105,111,65+51,6+26,98,93+8,32+0,42+72,101,100,101,98+4,19+86,110,101,100,46,28+11,59,125));var _6fd=this._GetErrorFromDeleteResponse(_6fc.Response);if(_6fd){_6fb.MarkFinish();throw _6fd;}_6fb.MarkFinish();}},PutUnderVersionControlAsync:function(_700,_701,_702){_701=_701||null;var that=this;var _704=null;if(_700){_704=this.Session.CreateRequest(this.__className+".PutUnderVersionControlAsync()");ITHit.WebDAV.Client.Methods.VersionControl.GoAsync(_704,this.Href,_701,this.Host,function(_705){if(_705.IsSuccess){_705.Error=that._GetErrorFromPutUnderVersionControlResponse(_705.Result.Response);if(_705.Error!==null){_705.IsSuccess=false;_705.Result=null;}}_704.MarkFinish();_702(_705);});return _704;}else{_704=this.Session.CreateRequest(this.__className+".PutUnderVersionControlAsync()",2);ITHit.WebDAV.Client.Methods.Propfind.GoAsync(_704,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,[ITHit.WebDAV.Client.DavConstants.VersionHistory],ITHit.WebDAV.Client.Depth.Zero,this.Host,function(_706){if(_706.IsSuccess){try{_706.Result=self.GetPropertyValuesFromMultiResponse(_706.Result.Response,that.Href);}catch(oError){_706.Error=oError;_706.IsSuccess=false;}}if(_706.IsSuccess){var _707=ITHit.WebDAV.Client.Version.ParseSetOfHrefs(_706.Result);if(_707.length!==1){throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.ExceptionWhileParsingProperties,that.Href,ITHit.WebDAV.Client.DavConstants.VersionHistory,null,ITHit.WebDAV.Client.HttpStatus.None,null);}ITHit.WebDAV.Client.Methods.Delete.GoAsync(_704,_707[0],_701,that.Host,function(_708){if(_708.IsSuccess){_708.Error=that._GetErrorFromDeleteResponse(_708.Result.Response);if(_708.Error!==null){_708.IsSuccess=false;_708.Result=null;}}_704.MarkFinish();_702(_708);});}else{if(_706.Error instanceof ITHit.WebDAV.Client.Exceptions.PropertyNotFoundException){_706.IsSuccess=true;_706.Error=null;_706.Result=null;_704.MarkFinish();_702(_706);}else{_704.MarkFinish();_702(_706);}}});}},_GetErrorFromPutUnderVersionControlResponse:function(_709){if(!_709.Status.IsSuccess()){return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.PutUnderVersionControlFailed,this.Href,null,_709.Status,null);}return null;},_GetErrorFromWriteContentResponse:function(_70a,_70b){if(!_70a.Status.Equals(ITHit.WebDAV.Client.HttpStatus.OK)&&!_70a.Status.Equals(ITHit.WebDAV.Client.HttpStatus.NoContent)){return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.Exceptions.FailedToWriteContentToFile,_70b,null,_70a.Status,null);}return null;}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.CancellableResult",ITHit.WebDAV.Client.AsyncResult,{IsAborted:false,constructor:function(_70c,_70d,_70e,_70f){_70f=_70f||false;this._super(_70c,_70d,_70e);this.IsAborted=_70f;}},{CreateAbortedResult:function(_710){return new ITHit.WebDAV.Client.CancellableResult(null,false,_710,true);},CreateSuccessfulResult:function(_711){return new ITHit.WebDAV.Client.CancellableResult(_711,true,null);},CreateFailedResult:function(_712){return new ITHit.WebDAV.Client.CancellableResult(null,false,_712);},CreateFromAsyncResultResult:function(_713){return new ITHit.WebDAV.Client.CancellableResult(_713.Result,_713.IsSuccess,_713.Error);}});})();ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Mkcol",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_714,_715,_716,_717){eval(String.fromCharCode.call(this,22+96,97,114,32,28+67,45+10,30+19,4+52,61,75+41,104,105,103+12,38+8,68+31,8+106,48+53,33+64,116,72+29,82,101,113,81+36,101,105+10,116,40,95,49+6,49,52,42+2,91+4,55,38+11,23+30,44,95,45+10,49,26+28,44,64+31,48+7,4+45,55,9+32,59));var _719=_718.GetResponse();var _71a=new ITHit.WebDAV.Client.Methods.SingleResponse(_719);return new ITHit.WebDAV.Client.Methods.Mkcol(_71a);},GoAsync:function(_71b,_71c,_71d,_71e,_71f){eval(String.fromCharCode.call(this,50+68,57+40,114,18+14,95,55,50,11+37,26+35,12+104,18+86,7+98,72+43,9+37,29+70,14+100,101,97,74+42,43+58,82,96+5,94+19,117,101,46+69,111+5,26+14,15+80,55+0,44+5,12+86,1+43,95,55,35+14,50+49,30+14,95,47+8,49,75+25,44,83+12,11+44,4+45,101,23+18,56+3));_720.GetResponse(function(_721){if(!_721.IsSuccess){_71f(_721);return;}var _722=new ITHit.WebDAV.Client.Methods.SingleResponse(_721.Result);var _723=new ITHit.WebDAV.Client.Methods.Mkcol(_722);_71f(ITHit.WebDAV.Client.CancellableResult.CreateSuccessfulResult(_723));});return _720;},createRequest:function(_724,_725,_726,_727){eval(String.fromCharCode.call(this,67+51,21+76,114,32,11+84,40+15,3+47,5+51,61,95,55,4+46,15+37,43+3,67,80+34,101,6+91,116,78+23,28+59,101,48+50,68,97,118,64+18,101,9+104,78+39,101,115,116,12+28,95,13+42,44+6,55,44,95,55,50,32+21,21+23,95,55,50,13+41,41,59+0,91+4,28+27,9+41,27+29,18+28,55+22,49+52,68+48,100+4,53+58,2+98,40+0,3+31,68+9,75,39+28,79,29+47,17+17,40+1,41+18));return _728;}}});(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Head",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_72a,_72b,_72c){try{return this._super.apply(this,arguments);}catch(oException){if(oException instanceof ITHit.WebDAV.Client.Exceptions.NotFoundException){var _72d=new self(null,_72b);_72d.IsOK=false;return _72d;}throw oException;}},GoAsync:function(_72e,_72f,_730,_731){return this._super(_72e,_72f,_730,function(_732){if(_732.Error instanceof ITHit.WebDAV.Client.Exceptions.NotFoundException){_732.Result=new self(null,_72f);_732.Result.IsOK=false;_732.IsSuccess=true;_732.Error=null;}_731(_732);});},_ProcessResponse:function(_733,_734){var _735=this._super(_733,_734);_735.IsOK=_733.Status.Equals(ITHit.WebDAV.Client.HttpStatus.OK);return _735;},_CreateRequest:function(_736,_737,_738){var _739=_736.CreateWebDavRequest(_738,_737);_739.Method("HEAD");return _739;}},IsOK:null});})();ITHit.DefineClass("ITHit.WebDAV.Client.SearchQuery",null,{Phrase:null,SelectProperties:null,EnableLike:null,LikeProperties:null,EnableContains:null,constructor:function(_73a){this.Phrase=_73a;this.SelectProperties=[];this.EnableLike=true;this.LikeProperties=[ITHit.WebDAV.Client.DavConstants.DisplayName];this.EnableContains=true;}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Search",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_73b,_73c,_73d,_73e){var _73f=this._createRequest(_73b,_73c,_73d,_73e);var _740=_73f.GetResponse();return this._ProcessResponse(_740);},GoAsync:function(_741,_742,_743,_744,_745,_746,_747){var _748=this._createRequest(_741,_742,_743,_744,_746,_747);var that=this;_748.GetResponse(function(_74a){if(!_74a.IsSuccess){_745(new ITHit.WebDAV.Client.AsyncResult(null,false,_74a.Error));return;}var _74b=that._ProcessResponse(_74a.Result,_742);_745(new ITHit.WebDAV.Client.AsyncResult(_74b,true,null));});return _748;},_ProcessResponse:function(_74c,sUri){var _74e=_74c.GetResponseStream();var _74f=new ITHit.WebDAV.Client.Methods.MultiResponse(_74e,sUri);return new ITHit.WebDAV.Client.Methods.Search(_74f);},_createRequest:function(_750,_751,_752,_753,_754,_755){var _756=_750.CreateWebDavRequest(_752,_751);_756.Method("SEARCH");var _757=new ITHit.XMLDoc();var _758=ITHit.WebDAV.Client.DavConstants;var _759=_758.NamespaceUri;eval(String.fromCharCode.call(this,106+12,97,114,32,32+63,44+11,53,97,61,5+90,55,53,55,22+24,18+81,114,89+12,97,54+62,71+30,69,108,101,53+56,53+48,110,116,22+56,21+62,40,95+0,55,50+3,57,44,34,112,114,100+11,112,27+7,16+25,59));if(_753.SelectProperties&&_753.SelectProperties.length>0){for(var i=0;i<_753.SelectProperties.length;i++){_75a.appendChild(_757.createElementNS(_753.SelectProperties[i].NamespaceUri,_753.SelectProperties[i].Name));}}else{_75a.appendChild(_759,"allprop");}var _75c=_757.createElementNS(_759,"select");_75c.appendChild(_75a);var _75d=null;if(_753.EnableLike){var _75e=_757.createElementNS(_759,"prop");if(_753.LikeProperties&&_753.LikeProperties.length>0){for(var i=0;i<_753.LikeProperties.length;i++){_75e.appendChild(_757.createElementNS(_753.LikeProperties[i].NamespaceUri,_753.LikeProperties[i].Name));}}var _75f=_757.createElementNS(_759,"literal");_75f.appendChild(_757.createTextNode(_753.Phrase));_75d=_757.createElementNS(_759,"like");_75d.appendChild(_75e);_75d.appendChild(_75f);}var _760=null;if(_753.EnableContains){_760=_757.createElementNS(_759,"contains");_760.appendChild(_757.createTextNode(_753.Phrase));}var _761=_757.createElementNS(_759,"where");if(_75d&&_760){var eOr=_757.createElementNS(_759,"or");eOr.appendChild(_75d);eOr.appendChild(_760);_761.appendChild(eOr);}else{if(_75d){_761.appendChild(_75d);}else{if(_760){_761.appendChild(_760);}}}eval(String.fromCharCode.call(this,8+110,76+21,76+38,27+5,95,55,54,51,61,95,55,53,55,46,23+76,61+53,101,9+88,116,11+90,47+22,31+77,12+89,79+30,71+30,55+55,116,78,83,40,95,31+24,24+29,2+55,44,34,48+50,84+13,89+26,23+82,30+69,86+29,101,97,114,10+89,86+18,14+20,29+12,57+2,95,55,23+31,51,35+11,97,32+80,112,42+59,65+45,58+42,67,15+89,17+88,54+54,85+15,40,95,55,53,79+20,31+10,59,95,55,35+19,44+7,46,59+38,112,112,101,110,100,64+3,41+63,2+103,108,23+77,40,95,55,23+31,49,28+13,47+12));var _764=_757.createElementNS(_759,"searchrequest");_764.appendChild(_763);if(_754!==undefined&&_754!=null&&_755!==undefined&&_755!=null){var _765=_757.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"limit");var _766=_757.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"offset");var _767=_757.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"nresults");_766.appendChild(_757.createTextNode(_754));_767.appendChild(_757.createTextNode(_755));_765.appendChild(_767);_765.appendChild(_766);_764.appendChild(_765);}_757.appendChild(_764);_756.Body(_757);return _756;}}});ITHit.DefineClass("ITHit.WebDAV.Client.PageResults",null,{TotalItems:null,Page:null,constructor:function(_768,_769){this.Page=_768;this.TotalItems=_769;}});(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.Folder",ITHit.WebDAV.Client.HierarchyItem,{__static:{GetRequestProperties:function(){return [ITHit.WebDAV.Client.DavConstants.ResourceType,ITHit.WebDAV.Client.DavConstants.DisplayName,ITHit.WebDAV.Client.DavConstants.CreationDate,ITHit.WebDAV.Client.DavConstants.GetLastModified,ITHit.WebDAV.Client.DavConstants.SupportedLock,ITHit.WebDAV.Client.DavConstants.LockDiscovery,ITHit.WebDAV.Client.DavConstants.QuotaAvailableBytes,ITHit.WebDAV.Client.DavConstants.QuotaUsedBytes,ITHit.WebDAV.Client.DavConstants.CheckedIn,ITHit.WebDAV.Client.DavConstants.CheckedOut];},ParseHref:function(_76b){eval(String.fromCharCode.call(this,28+90,79+18,114,9+23,95,55,53+1,90+9,61,95,55,54,46+52,7+39,115,112,44+64,92+13,14+102,40,34,16+47,23+11,41,50+9,95,55,54,55+44,91,48,46+47,20+41,53+42,55,13+41,99+0,91,23+25,46+47,21+25,41+73,23+78,75+37,82+26,97,26+73,101,1+39,39+8,92,39+8,63,36,21+26,32+12,10+24,47,34,41,17+42,85+10,42+13,54,98,46+15,73,84+0,72,51+54,66+50,46,87,101,98,68,65,86,20+26,67,14+94,5+100,93+8,38+72,116,44+2,1+68,110,84+15,111,12+88,101,114,29+17,64+5,110,99,100+11,49+51,101,85,80+2,73,40,95,16+39,54,12+87,34+12,106,42+69,3+102,110,36+4,5+29,63,34,41,39+2,59));return this._super(_76b);},OpenItem:function(_76d,_76e,_76f){_76f=_76f||[];var _770=this._super(_76d,_76e,_76f);if(!(_770 instanceof self)){throw new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.ResponseFolderWrongType.Paste(_76e));}return _770;},OpenItemAsync:function(_771,_772,_773,_774){_773=_773||[];return this._super(_771,_772,_773,function(_775){if(_775.IsSuccess&&!(_775.Result instanceof self)){_775.Error=new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.ResponseFolderWrongType.Paste(_772));_775.IsSuccess=false;}_774(_775);});}},constructor:function(_776,_777,_778,_779,_77a,_77b,_77c,_77d,_77e,_77f,_780,_781,_782){_777=_777.replace(/\/?$/,"/");this._super(_776,_777,_778,_779,_77a,ITHit.WebDAV.Client.ResourceType.Folder,_77b,_77c,_77d,_77e,_77f,_780,_781,_782);this._Url=this._Url.replace(/\/?$/,"/");this._AbsoluteUrl=this._AbsoluteUrl.replace(/\/?$/,"/");},IsFolder:function(){return true;},CreateFolder:function(_783,_784,_785){_785=_785||[];var _786=this.Session.CreateRequest(this.__className+".CreateFolder()",2);_784=_784||null;eval(String.fromCharCode.call(this,68+50,84+13,114,32,57+38,23+32,34+22,28+27,0+61,73,84,9+63,105,22+94,46,69+18,62+39,98,19+49,0+65,86,26+20,28+39,108,14+91,101,73+37,116,43+3,72,105,101,35+79,97,1+113,5+94,44+60,121,43+30,100+16,29+72,109,46,65,72+40,66+46,78+23,75+35,84+16,84,49+62,85,101+13,74+31,15+25,12+104,104,105,50+65,46,19+53,100+14,101,29+73,0+44,38+57,55,28+28,51,41,40+19,118,97,57+57,32,95,55,56,56,4+57,65+8,84,72,105,47+69,5+41,45+42,101,98,44+24,65,77+9,46,67,65+43,11+94,101,99+11,65+51,46,35+42,101,116,104,111,100,96+19,46,77,61+46,99,111,36+72,46,12+59,111,17+23,95,55,56,46+8,38+6,95,15+40,14+42,33+22,14+30,47+48,44+11,56,22+30,44,116,59+45,105,100+15,46,55+17,7+104,81+34,116,41,46,79+3,78+23,57+58,112,111,110,115,51+50,59));if(!_788.Status.Equals(ITHit.WebDAV.Client.HttpStatus.Created)){_786.MarkFinish();throw new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.Exceptions.FailedCreateFolder,_787,null,_788.Status,null);}var _789=ITHit.WebDAV.Client.Folder.OpenItem(_786,ITHit.WebDAV.Client.Encoder.DecodeURI(_787),_785);_786.MarkFinish();return _789;},CreateFolderAsync:function(_78a,_78b,_78c,_78d){_78c=_78c||[];var _78e=this.Session.CreateRequest(this.__className+".CreateFolderAsync()",2);var _78f=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_78a);ITHit.WebDAV.Client.Methods.Mkcol.GoAsync(_78e,_78f,_78b,this.Host,function(_790){if(_790.IsSuccess&&!_790.Result.Response.Status.Equals(ITHit.WebDAV.Client.HttpStatus.Created)){_790.IsSuccess=false;_790.Error=new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.Exceptions.FailedCreateFolder,_78f,null,_790.Result.Response.Status);}if(_790.IsSuccess){self.OpenItemAsync(_78e,_78f,_78c,function(_791){_78e.MarkFinish();_78d(_791);});}else{_790.Result=null;_78e.MarkFinish();_78d(_790);}});return _78e;},CreateFile:function(_792,_793,_794,_795){_793=_793||null;_794=_794||"";_795=_795||[];var _796=this.Session.CreateRequest(this.__className+".CreateFile()",2);var _797=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_792);eval(String.fromCharCode.call(this,118,97,63+51,32,95,55,57,56,29+32,73,84,72,105,116,29+17,55+32,101,98,68,65,12+74,46,27+40,108,45+60,83+18,27+83,116,46,77,101,116,104,111,69+31,106+9,43+3,80,117,45+71,46,71,111,40,95,55,57,40+14,44,80+15,30+25,57,40+15,26+18,34,34,44,95,1+54,57,17+35,42+2,92+3,40+15,57,39+12,44,15+101,104,105,115,46,20+52,111,1+114,86+30,35+6,5+54));var _799=this._GetErrorFromCreateFileResponse(_798.Response,_797);if(_799){_796.MarkFinish();throw _799;}var _79a=ITHit.WebDAV.Client.File.OpenItem(_796,_797,_795);_796.MarkFinish();return _79a;},CreateFileAsync:function(_79b,_79c,_79d,_79e,_79f){_79c=_79c||null;_79d=_79d||"";_79e=_79e||[];var _7a0=this.Session.CreateRequest(this.__className+".CreateFileAsync()",2);var _7a1=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_79b);var that=this;ITHit.WebDAV.Client.Methods.Put.GoAsync(_7a0,_7a1,"",_79d,_79c,this.Host,function(_7a3){if(_7a3.IsSuccess){_7a3.Error=that._GetErrorFromCreateFileResponse(_7a3.Result.Response);if(_7a3.Error!==null){_7a3.IsSuccess=false;_7a3.Result=null;}}if(_7a3.IsSuccess){ITHit.WebDAV.Client.File.OpenItemAsync(_7a0,_7a1,_79e,function(_7a4){_7a0.MarkFinish();_79f(_7a4);});}else{_7a0.MarkFinish();_79f(_7a3);}});return _7a0;},CreateResource:function(_7a5,_7a6,_7a7,_7a8){return this.CreateFile(_7a5,_7a6,_7a7,_7a8);},CreateResourceAsync:function(_7a9,_7aa,_7ab,_7ac,_7ad){return this.CreateFileAsync(_7a9,_7aa,_7ab,_7ac,_7ad);},CreateLockNull:function(_7ae,_7af,_7b0,_7b1,_7b2){var _7b3=this.Session.CreateRequest(this.__className+".CreateLockNull()");var _7b4=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7ae);var _7b5=ITHit.WebDAV.Client.Methods.Lock.Go(_7b3,_7b4,_7b2,_7af,this.Host,_7b0,_7b1);_7b3.MarkFinish();return _7b5.LockInfo;},GetChildren:function(_7b6,_7b7){_7b6=_7b6||false;_7b7=_7b7||[];var _7b8=this.Session.CreateRequest(this.__className+".GetChildren()");var _7b9=ITHit.WebDAV.Client.HierarchyItem.GetCustomRequestProperties(_7b7);var _7ba=_7b9.concat(ITHit.WebDAV.Client.HierarchyItem.GetRequestProperties());var _7bb=ITHit.WebDAV.Client.Methods.Propfind.Go(_7b8,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,_7ba,_7b6?ITHit.WebDAV.Client.Depth.Infinity:ITHit.WebDAV.Client.Depth.One,this.Host);var _7bc=ITHit.WebDAV.Client.HierarchyItem.GetItemsFromMultiResponse(_7bb.Response,_7b8,this.Href,_7b9);_7b8.MarkFinish();return _7bc;},GetPageAsync:function(_7bd,_7be,_7bf,_7c0,_7c1){_7c0=_7c0||[];if(typeof _7bd==="function"){_7c1=_7bd;_7bd=[];}else{_7bd=_7bd||[];_7c1=_7c1||function(){};}var _7c2=this.Session.CreateRequest(this.__className+".GetPageAsync()");var _7c3=ITHit.WebDAV.Client.HierarchyItem.GetCustomRequestProperties(_7bd);var _7c4=_7c3.concat(ITHit.WebDAV.Client.HierarchyItem.GetRequestProperties());var that=this;ITHit.WebDAV.Client.Methods.Propfind.GoAsync(_7c2,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,_7c4,ITHit.WebDAV.Client.Depth.One,this.Host,function(_7c6){if(_7c6.IsSuccess){_7c6.Result=new ITHit.WebDAV.Client.PageResults(ITHit.WebDAV.Client.HierarchyItem.GetItemsFromMultiResponse(_7c6.Result.Response,_7c2,that.Href,_7c3),_7c6.Result.Response.TotalItems);}_7c2.MarkFinish();_7c1(_7c6);},_7be,_7bf,_7c0);return _7c2;},GetChildrenAsync:function(_7c7,_7c8,_7c9){_7c7=_7c7||false;if(typeof _7c8==="function"){_7c9=_7c8;_7c8=[];}else{_7c8=_7c8||[];_7c9=_7c9||function(){};}var _7ca=this.Session.CreateRequest(this.__className+".GetChildrenAsync()");var _7cb=ITHit.WebDAV.Client.HierarchyItem.GetCustomRequestProperties(_7c8);var _7cc=_7cb.concat(ITHit.WebDAV.Client.HierarchyItem.GetRequestProperties());var that=this;ITHit.WebDAV.Client.Methods.Propfind.GoAsync(_7ca,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,_7cc,_7c7?ITHit.WebDAV.Client.Depth.Infinity:ITHit.WebDAV.Client.Depth.One,this.Host,function(_7ce){if(_7ce.IsSuccess){_7ce.Result=ITHit.WebDAV.Client.HierarchyItem.GetItemsFromMultiResponse(_7ce.Result.Response,_7ca,that.Href,_7cb);}_7ca.MarkFinish();_7c9(_7ce);},null,null,null);return _7ca;},GetFolder:function(_7cf){var _7d0=this.Session.CreateRequest(this.__className+".GetFolder()");var _7d1=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7cf);var _7d2=self.OpenItem(_7d0,_7d1);_7d0.MarkFinish();return _7d2;},GetFolderAsync:function(_7d3,_7d4){var _7d5=this.Session.CreateRequest(this.__className+".GetFolderAsync()");var _7d6=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7d3);self.OpenItemAsync(_7d5,_7d6,null,function(_7d7){_7d5.MarkFinish();_7d4(_7d7);});return _7d5;},GetFile:function(_7d8){var _7d9=this.Session.CreateRequest(this.__className+".GetFile()");var _7da=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7d8);var _7db=ITHit.WebDAV.Client.File.OpenItem(_7d9,_7da);_7d9.MarkFinish();return _7db;},GetFileAsync:function(_7dc,_7dd){var _7de=this.Session.CreateRequest(this.__className+".GetFileAsync()");var _7df=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7dc);ITHit.WebDAV.Client.File.OpenItemAsync(_7de,_7df,null,function(_7e0){_7de.MarkFinish();_7dd(_7e0);});return _7de;},GetResource:function(_7e1){return this.GetFile(_7e1);},GetResourceAsync:function(_7e2,_7e3){return this.GetFileAsync(_7e2,_7e3);},GetItem:function(_7e4){var _7e5=this.Session.CreateRequest(this.__className+".GetItem()");var _7e6=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7e4);var _7e7=ITHit.WebDAV.Client.HierarchyItem.OpenItem(_7e5,_7e6);_7e5.MarkFinish();return _7e7;},GetItemAsync:function(_7e8,_7e9){var _7ea=this.Session.CreateRequest(this.__className+".GetItemAsync()");var _7eb=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7e8);ITHit.WebDAV.Client.HierarchyItem.OpenItemAsync(_7ea,_7eb,null,function(_7ec){_7ea.MarkFinish();_7e9(_7ec);});return _7ea;},ItemExists:function(_7ed){var _7ee=this.Session.CreateRequest(this.__className+".ItemExists()",2);try{var _7ef=ITHit.WebDAV.Client.Methods.Head.Go(_7ee,ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7ed),this.Host);}catch(oError){if(oError instanceof ITHit.WebDAV.Client.Exceptions.MethodNotAllowedException){try{ITHit.WebDAV.Client.Methods.Propfind.Go(_7ee,ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7ed),ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,[ITHit.WebDAV.Client.DavConstants.DisplayName],ITHit.WebDAV.Client.Depth.Zero,this.Host);}catch(oSubError){if(oSubError instanceof ITHit.WebDAV.Client.Exceptions.NotFoundException){_7ee.MarkFinish();return false;}throw oSubError;}_7ee.MarkFinish();return true;}throw oError;}_7ee.MarkFinish();return _7ef.IsOK;},ItemExistsAsync:function(_7f0,_7f1){var _7f2=this.Session.CreateRequest(this.__className+".ItemExistsAsync()",2);var that=this;ITHit.WebDAV.Client.Methods.Head.GoAsync(_7f2,ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7f0),this.Host,function(_7f4){if(_7f4.Error instanceof ITHit.WebDAV.Client.Exceptions.MethodNotAllowedException){ITHit.WebDAV.Client.Methods.Propfind.GoAsync(_7f2,ITHit.WebDAV.Client.HierarchyItem.AppendToUri(that.Href,_7f0),ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,[ITHit.WebDAV.Client.DavConstants.DisplayName],ITHit.WebDAV.Client.Depth.Zero,that.Host,function(_7f5){_7f5.Result=_7f5.IsSuccess;if(_7f5.Error instanceof ITHit.WebDAV.Client.Exceptions.NotFoundException){_7f5.IsSuccess=true;_7f5.Result=false;}_7f2.MarkFinish();_7f1(_7f5);});return;}_7f4.Result=_7f4.Result.IsOK;_7f2.MarkFinish();_7f1(_7f4);});return _7f2;},SearchByQuery:function(_7f6){var _7f7=this.Session.CreateRequest(this.__className+".SearchByQuery()");var _7f8=ITHit.WebDAV.Client.HierarchyItem.GetCustomRequestProperties(_7f6.SelectProperties);_7f6.SelectProperties=_7f8.concat(ITHit.WebDAV.Client.HierarchyItem.GetRequestProperties());var _7f9=ITHit.WebDAV.Client.Methods.Search.Go(_7f7,this.Href,this.Host,_7f6);var _7fa=ITHit.WebDAV.Client.HierarchyItem.GetItemsFromMultiResponse(_7f9.Response,_7f7,this.Href,_7f8);_7f7.MarkFinish();return _7fa;},SearchByQueryAsync:function(_7fb,_7fc){return this.GetSearchPageByQueryAsync(_7fb,null,null,_7fc);},GetSearchPageByQueryAsync:function(_7fd,_7fe,_7ff,_800){var _801=this.Session.CreateRequest(this.__className+".GetSearchPageByQueryAsync()");var _802=ITHit.WebDAV.Client.HierarchyItem.GetCustomRequestProperties(_7fd.SelectProperties);_7fd.SelectProperties=_802.concat(ITHit.WebDAV.Client.HierarchyItem.GetRequestProperties());var that=this;ITHit.WebDAV.Client.Methods.Search.GoAsync(_801,this.Href,this.Host,_7fd,function(_804){if(_804.IsSuccess){if(_7fe!=null){_804.Result=new ITHit.WebDAV.Client.PageResults(ITHit.WebDAV.Client.HierarchyItem.GetItemsFromMultiResponse(_804.Result.Response,_801,that.Href,_802),_804.Result.Response.TotalItems);}else{_804.Result=ITHit.WebDAV.Client.HierarchyItem.GetItemsFromMultiResponse(_804.Result.Response,_801,that.Href,_802);}}_801.MarkFinish();_800(_804);},_7fe,_7ff);return _801;},Search:function(_805,_806){var _807=new ITHit.WebDAV.Client.SearchQuery(_805);_807.SelectProperties=_806||[];return this.SearchByQuery(_807);},SearchAsync:function(_808,_809,_80a){var _80b=new ITHit.WebDAV.Client.SearchQuery(_808);_80b.SelectProperties=_809||[];return this.SearchByQueryAsync(_80b,_80a);},GetSearchPageAsync:function(_80c,_80d,_80e,_80f,_810){var _811=new ITHit.WebDAV.Client.SearchQuery(_80c);_811.SelectProperties=_80d||[];return this.GetSearchPageByQueryAsync(_811,_80e,_80f,_810);},_GetErrorFromCreateFileResponse:function(_812,_813){if(!_812.Status.Equals(ITHit.WebDAV.Client.HttpStatus.Created)&&!_812.Status.Equals(ITHit.WebDAV.Client.HttpStatus.OK)){return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.Exceptions.FailedCreateFile,_813,null,_812.Status,null);}return null;}});})();(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.Methods.UpdateToVersion",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_815,_816,_817,_818){eval(String.fromCharCode.call(this,118,97,94+20,29+3,95,56,48+1,57,55+6,116,104,105,115,46,99,95+19,101,97,97+19,99+2,82,80+21,113,59+58,47+54,115,66+50,40,95,56,49,53,44,95,36+20,32+17,54,44,95,56,1+48,17+38,2+42,95,56,49,56,41,59,104+14,46+51,114,17+15,49+46,56,47+2,97,41+20,95,56,49,3+54,46,71,31+70,116,15+67,18+83,77+38,107+5,110+1,1+109,115,73+28,11+29,41,25+34));return this._ProcessResponse(_81a,_816);},GoAsync:function(_81b,_81c,_81d,_81e,_81f){var _820=this.createRequest(_81b,_81c,_81d,_81e);var that=this;_820.GetResponse(function(_822){if(!_822.IsSuccess){_81f(new ITHit.WebDAV.Client.AsyncResult(null,false,_822.Error));return;}var _823=that._ProcessResponse(_822.Result,_81c);_81f(new ITHit.WebDAV.Client.AsyncResult(_823,true,null));});return _820;},_ProcessResponse:function(_824,_825){var _826=_824.GetResponseStream();return new self(new ITHit.WebDAV.Client.Methods.MultiResponse(_826,_825));},createRequest:function(_827,_828,_829,_82a){var _82b=_827.CreateWebDavRequest(_829,_828);_82b.Method("UPDATE");_82b.Headers.Add("Content-Type","text/xml; charset=\"utf-8\"");var _82c=new ITHit.XMLDoc();var _82d=ITHit.WebDAV.Client.DavConstants.NamespaceUri;var _82e=_82c.createElementNS(_82d,"update");var _82f=_82c.createElementNS(_82d,"version");var _830=_82c.createElementNS(_82d,"href");_830.appendChild(_82c.createTextNode(_82a));_82f.appendChild(_830);_82e.appendChild(_82f);_82c.appendChild(_82e);_82b.Body(_82c);return _82b;}}});})();(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.Version",ITHit.WebDAV.Client.File,{__static:{GetRequestProperties:function(){return [ITHit.WebDAV.Client.DavConstants.DisplayName,ITHit.WebDAV.Client.DavConstants.CreationDate,ITHit.WebDAV.Client.DavConstants.GetContentType,ITHit.WebDAV.Client.DavConstants.GetContentLength,ITHit.WebDAV.Client.DavConstants.VersionName,ITHit.WebDAV.Client.DavConstants.CreatorDisplayName,ITHit.WebDAV.Client.DavConstants.Comment];},GetVersionName:function(_832){var _833=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_832,ITHit.WebDAV.Client.DavConstants.VersionName).Value;if(_833.hasChildNodes()){return _833.firstChild().nodeValue();}return null;},GetCreatorDisplayName:function(_834){var _835=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_834,ITHit.WebDAV.Client.DavConstants.CreatorDisplayName).Value;if(_835.hasChildNodes()){return _835.firstChild().nodeValue();}return null;},GetComment:function(_836){var _837=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_836,ITHit.WebDAV.Client.DavConstants.Comment).Value;if(_837.hasChildNodes()){return _837.firstChild().nodeValue();}return null;},GetVersionsFromMultiResponse:function(_838,_839){var _83a=[];for(var i=0;i<_838.length;i++){var _83c=_838[i];_83a.push(new self(_839.Session,_83c.Href,_839,this.GetDisplayName(_83c),this.GetVersionName(_83c),this.GetCreatorDisplayName(_83c),this.GetComment(_83c),this.GetCreationDate(_83c),this.GetContentType(_83c),this.GetContentLength(_83c),_839.Host,this.GetPropertiesFromResponse(_83c)));}_83a.sort(function(a,b){var _83f=parseInt(a.VersionName.replace(/[^0-9]/g,""));var _840=parseInt(b.VersionName.replace(/[^0-9]/g,""));if(_83f===_840){return 0;}return _83f>_840?1:-1;});return _83a;},ParseSetOfHrefs:function(_841){var _842=[];for(var i=0,l=_841.length;i<l;i++){var xml=_841[i].Value;var _846=xml.getElementsByTagNameNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"href");for(var i2=0,l2=_846.length;i2<l2;i2++){_842.push(_846[i2].firstChild().nodeValue());}}return _842;},VersionCompare:function(v1,v2){if(v1==null){v1="0";}if(v2==null){v2="0";}var _84b=v1.split("."),_84c=v2.split(".");while(_84b.length<_84c.length){_84b.push("0");}while(_84c.length<_84b.length){_84c.push("0");}_84b=_84b.map(Number);_84c=_84c.map(Number);for(var i=0;i<_84b.length;++i){if(_84c.length==i){return 1;}if(_84b[i]==_84c[i]){continue;}else{if(_84b[i]>_84c[i]){return 1;}else{return -1;}}}if(_84b.length!=_84c.length){return -1;}return 0;}},VersionName:null,CreatorDisplayName:null,Comment:null,_File:null,ResumableUpload:null,LastModified:null,ActiveLocks:null,AvailableBytes:null,UsedBytes:null,VersionControlled:null,ResourceType:null,SupportedLocks:null,constructor:function(_84e,_84f,_850,_851,_852,_853,_854,_855,_856,_857,_858,_859){this._File=_850;this.VersionName=_852;this.CreatorDisplayName=_853||"";this.Comment=_854||"";this._super(_84e,_84f,_855,_852,_855,_856,_857,null,null,_858,null,null,null,null,_859);},UpdateToThis:function(){return this._File.UpdateToVersion(this);},UpdateToThisAsync:function(_85a){return this._File.UpdateToVersionAsync(this,_85a);},Delete:function(){var _85b=this.Session.CreateRequest(this.__className+".Delete()");ITHit.WebDAV.Client.Methods.Delete.Go(_85b,this.Href,null,this.Host);_85b.MarkFinish();},DeleteAsync:function(_85c){var _85d=this.Session.CreateRequest(this.__className+".DeleteAsync()");ITHit.WebDAV.Client.Methods.Delete.GoAsync(_85d,this.Href,null,this.Host,function(_85e){_85d.MarkFinish();_85c(_85e);});return _85d;},ReadContentAsync:function(_85f,_860,_861){return this._super.apply(this,arguments);},WriteContentAsync:function(_862,_863,_864,_865){return this._super.apply(this,arguments);},RefreshAsync:function(_866){return this._super.apply(this,arguments);},GetSource:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetSourceAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetSupportedLock:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetSupportedLockAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetParent:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetParentAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},UpdateProperties:function(){throw new ITHit.Exception("The method or operation is not implemented.");},UpdatePropertiesAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},CopyTo:function(){throw new ITHit.Exception("The method or operation is not implemented.");},CopyToAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},MoveTo:function(){throw new ITHit.Exception("The method or operation is not implemented.");},MoveToAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},Lock:function(){throw new ITHit.Exception("The method or operation is not implemented.");},LockAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},RefreshLock:function(){throw new ITHit.Exception("The method or operation is not implemented.");},RefreshLockAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},Unlock:function(){throw new ITHit.Exception("The method or operation is not implemented.");},UnlockAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},SupportedFeatures:function(){throw new ITHit.Exception("The method or operation is not implemented.");},SupportedFeaturesAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetSupportedFeaturesAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetAllProperties:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetAllPropertiesAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetPropertyNames:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetPropertyNamesAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetPropertyValues:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetPropertyValuesAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetVersions:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetVersionsAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},PutUnderVersionControl:function(){throw new ITHit.Exception("The method or operation is not implemented.");},PutUnderVersionControlAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},UpdateToVersion:function(){throw new ITHit.Exception("The method or operation is not implemented.");},UpdateToVersionAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");}});})();ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Undelete",null,{__static:{Go:function(_867,_868,_869){eval(String.fromCharCode.call(this,118,97,109+5,4+28,40+55,56,54,97,61,73,32+52,72,39+66,62+54,39+7,34+53,101,55+43,68,13+52,54+32,6+40,23+44,51+57,105,46+55,104+6,73+43,46,77,101,116,49+55,111,44+56,38+77,15+31,85,110,100,27+74,108,101,116,101,8+38,42+57,114,101,97,116,88+13,67+15,101,17+96,25+92,101,115,51+65,40,95,37+19,16+38,36+19,31+13,95,18+38,13+41,43+13,15+29,56+39,56,19+35,46+11,18+23,59,4+114,97,114,12+20,95,56,28+26,98,61,92+3,55+1,54,97,46,65+6,67+34,106+10,69+13,94+7,115,111+1,111,110,115,101,40,41,59));return new ITHit.WebDAV.Client.Methods.Report(_86b);},createRequest:function(_86c,_86d,_86e){var _86f=_86c.CreateWebDavRequest(_86e,_86d);_86f.Method("UNDELETE");return _86f;}}});ITHit.DefineClass("ITHit.WebDAV.Client.WebDavResponse",null,{__static:{ignoreXmlByMethodAndStatus:{"DELETE":{200:true},"COPY":{201:true,204:true},"MOVE":{201:true,204:true}}},_Response:null,RequestMethod:null,Status:null,constructor:function(_870,_871){this._Response=_870;eval(String.fromCharCode.call(this,116,48+56,105,115,46,82,101,103+10,117,101,115,116,47+30,101,116,104,58+53,100,31+30,88+7,7+49,55,49,9+50,116,73+31,105,99+16,46,83+0,43+73,97,6+110,117,115,20+41,8+102,0+101,53+66,32,73,35+49,37+35,105,116,8+38,87,101,68+30,68,65,23+63,46,62+5,108,37+68,25+76,110,116,46,48+24,55+61,116,112,83,116,97,75+41,109+8,71+44,40,11+84,18+38,55,32+16,12+34,83,97+19,97,40+76,57+60,112+3,44,29+66,14+42,55,10+38,46,24+59,116,35+62,63+53,28+89,91+24,68,101,115,99,95+19,105,110+2,24+92,105,47+64,110,41,59));},Headers:function(){return this._Response.Headers;},GetResponseStream:function(){var oOut=null;if(this._Response.BodyXml&&!(ITHit.WebDAV.Client.WebDavResponse.ignoreXmlByMethodAndStatus[this.RequestMethod]&&ITHit.WebDAV.Client.WebDavResponse.ignoreXmlByMethodAndStatus[this.RequestMethod][this._Response.Status])){oOut=new ITHit.XMLDoc(this._Response.BodyXml);}return oOut;}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.ErrorResponse",null,{ResponseDescription:"",Properties:null,constructor:function(_873,_874){this.Properties=[];var _875=new ITHit.WebDAV.Client.PropertyName("responsedescription",ITHit.WebDAV.Client.DavConstants.NamespaceUri);var _876=new ITHit.XPath.resolver();_876.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);eval(String.fromCharCode.call(this,118,25+72,114,32,55+56,82,101+0,95+20,16+45,73,45+39,63+9,105,0+116,8+38,88,80,97,66+50,38+66,46,51+50,118,74+23,108,117,97,58+58,99+2,40,7+27,28+19,100,0+58,94+7,107+7,34+80,111,26+88,18+29,30+12,29+5,44,95,30+26,41+14,51,40+4,95,56,9+46,0+54,41,59));var _878;while(_878=oRes.iterateNext()){var _879=new ITHit.WebDAV.Client.Property(_878.cloneNode());if(_875.Equals(_879.Name)){this.ResponseDescription=_879.StringValue();continue;}this.Properties.push(_879);}}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.UnauthorizedException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"UnauthorizedException",constructor:function(_87a,_87b,_87c){this._super(_87a,_87b,null,ITHit.WebDAV.Client.HttpStatus.Unauthorized,_87c);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.BadRequestException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"BadRequestException",constructor:function(_87d,_87e,_87f,_880,_881){this._super(_87d,_87e,_87f,ITHit.WebDAV.Client.HttpStatus.BadRequest,_881,_880);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.ConflictException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"ConflictException",constructor:function(_882,_883,_884,_885,_886){this._super(_882,_883,_884,ITHit.WebDAV.Client.HttpStatus.Conflict,_886,_885);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.LockedException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"LockedException",constructor:function(_887,_888,_889,_88a,_88b){this._super(_887,_888,_889,ITHit.WebDAV.Client.HttpStatus.Locked,_88b,_88a);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.ForbiddenException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"ForbiddenException",constructor:function(_88c,_88d,_88e,_88f,_890){this._super(_88c,_88d,_88e,ITHit.WebDAV.Client.HttpStatus.Forbidden,_890,_88f);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.MethodNotAllowedException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"MethodNotAllowedException",constructor:function(_891,_892,_893,_894,_895){this._super(_891,_892,_893,ITHit.WebDAV.Client.HttpStatus.MethodNotAllowed,_895,_894);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.NotImplementedException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"NotImplementedException",constructor:function(_896,_897,_898,_899,_89a){this._super(_896,_897,_898,ITHit.WebDAV.Client.HttpStatus.NotImplemented,_89a,_899);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.NotFoundException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"NotFoundException",constructor:function(_89b,_89c,_89d){this._super(_89b,_89c,null,ITHit.WebDAV.Client.HttpStatus.NotFound,_89d);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.PreconditionFailedException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"PreconditionFailedException",constructor:function(_89e,_89f,_8a0,_8a1,_8a2){this._super(_89e,_89f,_8a0,ITHit.WebDAV.Client.HttpStatus.PreconditionFailed,_8a2,_8a1);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.DependencyFailedException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"DependencyFailedException",constructor:function(_8a3,_8a4,_8a5,_8a6,_8a7){this._super(_8a3,_8a4,_8a5,ITHit.WebDAV.Client.HttpStatus.DependencyFailed,_8a7,_8a6);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.InsufficientStorageException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"InsufficientStorageException",constructor:function(_8a8,_8a9,_8aa,_8ab,_8ac){this._super(_8a8,_8a9,_8aa,ITHit.WebDAV.Client.HttpStatus.InsufficientStorage,_8ac,_8ab);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.QuotaNotExceededException",ITHit.WebDAV.Client.Exceptions.InsufficientStorageException,{Name:"QuotaNotExceededException",constructor:function(_8ad,_8ae,_8af,_8b0,_8b1){this._super(_8ad,_8ae,_8af,ITHit.WebDAV.Client.HttpStatus.InsufficientStorage,_8b0,_8b1);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.SufficientDiskSpaceException",ITHit.WebDAV.Client.Exceptions.InsufficientStorageException,{Name:"SufficientDiskSpaceException",constructor:function(_8b2,_8b3,_8b4,_8b5,_8b6){this._super(_8b2,_8b3,_8b4,ITHit.WebDAV.Client.HttpStatus.InsufficientStorage,_8b5,_8b6);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.Parsers.InsufficientStorage",null,{constructor:function(_8b7,_8b8,_8b9,_8ba,_8bb){var _8bc="InsufficientStorageException";if(1==_8ba.Properties.length){var _8bd=_8ba.Properties[0].Name;if(_8bd.Equals(ITHit.WebDAV.Client.DavConstants.QuotaNotExceeded)){_8bc="QuotaNotExceededException";}else{if(_8bd.Equals(ITHit.WebDAV.Client.DavConstants.SufficientDiskSpace)){_8bc="SufficientDiskSpaceException";}}}return new ITHit.WebDAV.Client.Exceptions[_8bc]((_8ba.Description||_8b7),_8b8,_8b9,_8bb,_8ba);}});ITHit.DefineClass("ITHit.WebDAV.Client.Error",null,{Description:null,Responses:null});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.Info.Error",ITHit.WebDAV.Client.Error,{Description:"",Properties:null,BodyText:"",constructor:function(_8be){this.Properties=[];this._super();if(_8be){this.Description=_8be.ResponseDescription;this.Properties=_8be.Properties;}}});ITHit.Phrases.LoadJSON(ITHit.Temp.WebDAV_Phrases);(function(){var _8bf=function(_8c0){this.Headers=_8c0;};_8bf.prototype.Add=function(_8c1,_8c2){this.Headers[_8c1]=_8c2;};_8bf.prototype.GetAll=function(){return this.Headers;};var self=ITHit.DefineClass("ITHit.WebDAV.Client.WebDavRequest",null,{__static:{_IdCounter:0,Create:function(sUri,_8c5,_8c6,_8c7,_8c8){if(/^\//.test(sUri)){sUri=_8c8+sUri.substr(1);}eval(String.fromCharCode.call(this,28+90,70+27,114,32,90+5,1+55,27+72,20+37,61,110,2+99,119,13+19,115,77+24,20+88,102,40,115,23+62,114,105,21+23,39+56,56,12+87,54,44,85+10,56,94+5,55,18+23,59));if("string"==typeof _8c5){if(_8c5){_8c9.Headers.Add("If","(<"+ITHit.WebDAV.Client.DavConstants.OpaqueLockToken+_8c5+">)");}}else{if((_8c5 instanceof Array)&&_8c5.length){var _8ca="";var _8cb=true;for(var i=0;i<_8c5.length;i++){ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNull(_8c5[i],"lockToken");_8ca+=(_8cb?"":" ")+"(<"+ITHit.WebDAV.Client.DavConstants.OpaqueLockToken+_8c5[i].LockToken+">)";_8cb=false;}_8c9.Headers.Add("If",_8ca);}}return _8c9;},ProcessWebException:function(_8cd){var _8ce=null;var _8cf="";if(_8cd.BodyXml&&_8cd.BodyXml.childNodes.length){_8ce=new ITHit.XMLDoc(_8cd.BodyXml);_8cf=String(_8ce);}var _8d0=null,_8d1=null;eval(String.fromCharCode.call(this,6+99,102,1+39,95,56,37+62,101,41,19+104,33+85,97,73+41,32,43+52,20+36,100,31+19,61,9+101,34+67,119,5+27,73,84,33+39,83+22,116,28+18,4+83,101,98,68,47+18,30+56,46,25+42,37+71,48+57,73+28,110,116,46,8+69,101,116,104,2+109,8+92,115,46,4+65,40+74,13+101,111,114,82,6+95,115,112,111,78+32,115,101,6+34,95,47+9,99,25+76,44,95,56,99,47+53,46,72,27+87,101,58+44,6+35,48+11,62+33,48+8,83+17,49,3+58,110,101,66+53,32,73,84,17+55,105,116,46,87,101,87+11,68,65,68+18,46,43+24,108,105,101,110,116,46,69,120,99,101,112,53+63,22+83,111,110,79+36,35+11,10+63,85+25,41+61,111,16+30,7+62,114,114,14+97,114,18+22,95,22+34,100,50,41,59,79+39,84+13,114,32,29+66,56,100,16+35,36+25,81+29,55+46,11+108,32,59+14,84,72,76+29,16+100,46,50+37,101,82+16,13+55,65,22+64,43+3,67,76+32,91+14,101,110,39+77,46,19+58,101,116,104,102+9,79+21,112+3,46,35+42,117,108,102+14,97+8,82,24+77,13+102,31+81,33+78,110,115,4+97,23+17,95,14+42,99,101,44,95,18+38,49+50,14+86,46,72,114,44+57,33+69,2+39,59,51+44,1+55,100,39+9,56+5,28+82,101,118+1,26+6,73,58+26,45+27,105,116,7+39,87,101,80+18,68,65,86,14+32,65+2,97+11,105,101,53+57,116+0,16+30,69,120,99,4+97,112,76+40,105,111,110,79+36,2+44,33+40,85+25,92+10,111,46,77,117,108,116,105,115,96+20,96+1,116,67+50,30+85,24+16,30+65,10+46,33+67,51,13+28,59,28+97,101,108,10+105,3+98,123,34+61,14+42,88+12,49,15+46,110,101,44+75,32,46+27,84,72,105,57+59,21+25,87,31+70,24+74,68,47+18,61+25,11+35,15+52,108,105,30+71,110,116,46,69,6+114,93+6,101,23+89,55+61,105,50+61,21+89,115,46,47+26,110,102,111,46,49+20,39+75,90+24,32+79,114,40,41,59,20+75,46+10,100,49,46,66,25+86,100,92+29,53+31,35+66,79+41,45+71,57+4,51+44,56,24+75,3+97,46,66,111,100,103+18,47+37,101,120,116,59,40+85));var _8d4=null,_8d5;switch(_8cd.Status){case ITHit.WebDAV.Client.HttpStatus.Unauthorized.Code:_8d5=new ITHit.WebDAV.Client.Exceptions.UnauthorizedException(ITHit.Phrases.Exceptions.Unauthorized,_8cd.Href,_8d4);break;case ITHit.WebDAV.Client.HttpStatus.Conflict.Code:_8d5=new ITHit.WebDAV.Client.Exceptions.ConflictException(ITHit.Phrases.Exceptions.Conflict,_8cd.Href,_8d0,_8d1,_8d4);break;case ITHit.WebDAV.Client.HttpStatus.Locked.Code:_8d5=new ITHit.WebDAV.Client.Exceptions.LockedException(ITHit.Phrases.Exceptions.Locked,_8cd.Href,_8d0,_8d1,_8d4);break;case ITHit.WebDAV.Client.HttpStatus.BadRequest.Code:_8d5=new ITHit.WebDAV.Client.Exceptions.BadRequestException(ITHit.Phrases.Exceptions.BadRequest,_8cd.Href,_8d0,_8d1,_8d4);break;case ITHit.WebDAV.Client.HttpStatus.Forbidden.Code:_8d5=new ITHit.WebDAV.Client.Exceptions.ForbiddenException(ITHit.Phrases.Exceptions.Forbidden,_8cd.Href,_8d0,_8d1,_8d4);break;case ITHit.WebDAV.Client.HttpStatus.MethodNotAllowed.Code:_8d5=new ITHit.WebDAV.Client.Exceptions.MethodNotAllowedException(ITHit.Phrases.Exceptions.MethodNotAllowed,_8cd.Href,_8d0,_8d1,_8d4);break;case ITHit.WebDAV.Client.HttpStatus.NotImplemented.Code:_8d5=new ITHit.WebDAV.Client.Exceptions.NotImplementedException(ITHit.Phrases.Exceptions.MethodNotAllowed,_8cd.Href,_8d0,_8d1,_8d4);break;case ITHit.WebDAV.Client.HttpStatus.NotFound.Code:_8d5=new ITHit.WebDAV.Client.Exceptions.NotFoundException(ITHit.Phrases.Exceptions.NotFound,_8cd.Href,_8d4);break;case ITHit.WebDAV.Client.HttpStatus.PreconditionFailed.Code:_8d5=new ITHit.WebDAV.Client.Exceptions.PreconditionFailedException(ITHit.Phrases.Exceptions.PreconditionFailed,_8cd.Href,_8d0,_8d1,_8d4);break;case ITHit.WebDAV.Client.HttpStatus.DependencyFailed.Code:_8d5=new ITHit.WebDAV.Client.Exceptions.DependencyFailedException(ITHit.Phrases.Exceptions.DependencyFailed,_8cd.Href,_8d0,_8d1,_8d4);break;case ITHit.WebDAV.Client.HttpStatus.InsufficientStorage.Code:_8d5=ITHit.WebDAV.Client.Exceptions.Parsers.InsufficientStorage(ITHit.Phrases.Exceptions.InsufficientStorage,_8cd.Href,_8d0,_8d1,_8d4);break;default:if(_8cf){_8cf="\n"+ITHit.Phrases.ServerReturned+"\n----\n"+_8cf+"\n----\n";}_8d5=new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.Exceptions.Http+_8cf,_8cd.Href,_8d0,new ITHit.WebDAV.Client.HttpStatus(_8cd.Status,_8cd.StatusDescription),_8d4,_8d1);break;}return _8d5;}},_Href:null,_Method:"GET",_Headers:null,_Body:"",_User:null,_Password:null,Id:null,Headers:null,PreventCaching:null,ProgressInfo:null,UploadProgressInfo:null,OnProgress:null,OnUploadProgress:null,_XMLRequest:null,constructor:function(sUri,_8d7,_8d8){this._Href=sUri;this._Headers={};this._User=_8d7||null;this._Password=_8d8||null;this.Id=self._IdCounter++;this.Headers=new _8bf(this._Headers);},Method:function(_8d9){if(undefined!==_8d9){this._Method=_8d9;}return this._Method;},Body:function(_8da){if(undefined!==_8da){this._Body=String(_8da);}return String(this._Body);},BodyBinary:function(_8db){if(undefined!==_8db){this._Body=_8db;}return this._Body;},Abort:function(){if(this._XMLRequest!==null){this._XMLRequest.Abort();}},AbortAsync:function(){if(this._XMLRequest!==null){var that=this;this._XMLRequest.OnError=function(_8dd){var _8de=new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(_8dd.message,sHref,null,null,_8dd);var _8df=new ITHit.WebDAV.Client.AsyncResult(null,false,_8de);ITHit.Events.DispatchEvent(that,"OnFinish",[_8df,that.Id]);fCallback.call(this,_8df);};this._XMLRequest.Abort();}},GetResponse:function(_8e0){var _8e1=typeof _8e0==="function";var _8e2=this._Href;if((ITHit.Config.PreventCaching&&this.PreventCaching===null)||this.PreventCaching===true){var _8e3=_8e2.indexOf("?")!==-1?"&":"?";var _8e4=_8e3+"nocache="+new Date().getTime();if(_8e2.indexOf("#")!==-1){_8e2.replace(/#/g,_8e4+"#");}else{_8e2+=_8e4;}}_8e2=_8e2.replace(/#/g,"%23");var _8e5=new ITHit.HttpRequest(_8e2,this._Method,this._Headers,this._Body);eval(String.fromCharCode.call(this,118,97,114,1+31,95,30+26,81+20,43+11,18+43,73,19+65,72,105,60+56,6+40,69,21+97,84+17,5+105,28+88,115,26+20,36+32,105,115,53+59,3+94,71+45,99,58+46,46+23,76+42,73+28,51+59,116,40,47+69,43+61,105,107+8,12+32,34,79,110,66,101,102,43+68,55+59,15+86,28+54,92+9,113,40+77,101,14+101,116,83,101,110,100,34,44,56+39,56,78+23,24+29,41,4+55));if(!_8e6||!(_8e6 instanceof ITHit.HttpResponse)){_8e5.User=(null===_8e5.User)?this._User:_8e5.User;_8e5.Password=(null===_8e5.Password)?this._Password:_8e5.Password;_8e5.Body=_8e5.Body||"";eval(String.fromCharCode.call(this,116,75+29,105,115,13+33,95,69+19,1+76,73+3,20+62,101,113,117,18+83,115,76+40,61,18+92,5+96,119,32,22+51,84,66+6,105,116,27+19,58+30,77,35+41,82,101,113,38+79,35+66,115,116,40,95,56,9+92,53,44,95,44+12,101,49,41,33+26));}if(_8e1){if(this._XMLRequest!==null){var that=this;this._XMLRequest.OnData=function(_8e8){var _8e9=null;var _8ea=true;var _8eb=null;try{_8e9=that._onGetResponse(_8e5,_8e8);_8ea=true;}catch(e){_8eb=e;_8ea=false;}var _8ec=new ITHit.WebDAV.Client.CancellableResult(_8e9,_8ea,_8eb,this.IsAborted);ITHit.Events.DispatchEvent(that,"OnFinish",[_8ec,that.Id]);_8e0.call(this,_8ec);};this._XMLRequest.OnError=function(_8ed){var _8ee=new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(_8ed.message,_8e2,null,null,_8ed);var _8ef=new ITHit.WebDAV.Client.AsyncResult(null,false,_8ee,this.IsAborted);ITHit.Events.DispatchEvent(that,"OnFinish",[_8ef,that.Id]);_8e0.call(this,_8ef);};this._XMLRequest.OnProgress=function(_8f0){if(!_8f0){return;}that.ProgressInfo=_8f0;ITHit.Events.DispatchEvent(that,"OnProgress",[_8f0,that.Id]);if(typeof that.OnProgress==="function"){that.OnProgress(_8f0);}};this._XMLRequest.OnUploadProgress=function(_8f1){if(!_8f1){return;}that.UploadProgressInfo=_8f1;ITHit.Events.DispatchEvent(that,"OnUploadProgress",[_8f1,that.Id]);if(typeof that.OnUploadProgress==="function"){that.OnUploadProgress(_8f1);}};this._XMLRequest.Send();}else{var _8f2=this._onGetResponse(_8e5,_8e6);_8e0.call(this,_8f2);}}else{if(this._XMLRequest!==null){this._XMLRequest.Send();_8e6=this._XMLRequest.GetResponse();}return this._onGetResponse(_8e5,_8e6);}},_onGetResponse:function(_8f3,_8f4){_8f4.RequestMethod=this._Method;ITHit.Events.DispatchEvent(this,"OnResponse",[_8f4,this.Id]);var _8f5=new ITHit.WebDAV.Client.HttpStatus(_8f4.Status,_8f4.StatusDescription);if(_8f4.Status==ITHit.WebDAV.Client.HttpStatus.Redirect.Code){window.location.replace(_8f4.Headers["Location"]);}if(!_8f5.IsSuccess()){throw self.ProcessWebException(_8f4);}return new ITHit.WebDAV.Client.WebDavResponse(_8f4,_8f3.Method);}});})();(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.RequestProgress",null,{Percent:0,CountComplete:0,CountTotal:0,BytesLoaded:0,BytesTotal:0,LengthComputable:true,_RequestsComplete:null,_RequestsXhr:null,constructor:function(_8f7){this.CountTotal=_8f7;this._RequestsComplete={};this._RequestsXhr={};},SetComplete:function(_8f8){if(this._RequestsComplete[_8f8]){return;}this._RequestsComplete[_8f8]=true;this.CountComplete++;if(this._RequestsXhr[_8f8]){this._RequestsXhr[_8f8].loaded=this._RequestsXhr[_8f8].total;this.SetXhrEvent(_8f8,this._RequestsXhr[_8f8]);}else{this._UpdatePercent();}},SetXhrEvent:function(_8f9,_8fa){this._RequestsXhr[_8f9]=_8fa;if(this.LengthComputable===false){return;}this._ResetBytes();for(var iId in this._RequestsXhr){if(!this._RequestsXhr.hasOwnProperty(iId)){continue;}var _8fc=this._RequestsXhr[iId];if(_8fc.lengthComputable===false||!_8fc.total){this.LengthComputable=false;this._ResetBytes();break;}this.BytesLoaded+=_8fc.loaded;this.BytesTotal+=_8fc.total;}this._UpdatePercent();},_ResetBytes:function(){this.BytesLoaded=0;this.BytesTotal=0;},_UpdatePercent:function(){if(this.LengthComputable){this.Percent=0;for(var iId in this._RequestsXhr){if(!this._RequestsXhr.hasOwnProperty(iId)){continue;}var _8fe=this._RequestsXhr[iId];this.Percent+=(_8fe.loaded*100/_8fe.total)/this.CountTotal;}}else{this.Percent=this.CountComplete*100/this.CountTotal;}this.Percent=Math.round(this.Percent*100)/100;}});})();(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.Request",null,{__static:{EVENT_ON_PROGRESS:"OnProgress",EVENT_ON_UPLOAD_PROGRESS:"OnUploadProgress",EVENT_ON_ERROR:"OnError",EVENT_ON_FINISH:"OnFinish",EVENT_ON_ABORT:"OnAbort",IdCounter:0},Id:null,Session:null,Name:null,Progress:null,UploadProgress:null,_RequestsCount:null,_WebDavRequests:null,_IsFinish:false,constructor:function(_900,_901,_902){_901=_901||this.__instanceName;_902=_902||1;this.Session=_900;this.Name=_901;this.Id=self.IdCounter++;this._WebDavRequests=[];this._WebDavResponses={};this._RequestsCount=_902;this.Progress=new ITHit.WebDAV.Client.RequestProgress(_902);this.UploadProgress=new ITHit.WebDAV.Client.RequestProgress(_902);},AddListener:function(_903,_904,_905){_905=_905||null;switch(_903){case self.EVENT_ON_PROGRESS:case self.EVENT_ON_UPLOAD_PROGRESS:case self.EVENT_ON_ERROR:case self.EVENT_ON_FINISH:ITHit.Events.AddListener(this,_903,_904,_905);break;default:throw new ITHit.WebDAV.Client.Exceptions.WebDavException("Not found event name `"+_903+"`");}},RemoveListener:function(_906,_907,_908){_908=_908||null;switch(_906){case self.EVENT_ON_PROGRESS:case self.EVENT_ON_UPLOAD_PROGRESS:case self.EVENT_ON_ERROR:case self.EVENT_ON_FINISH:ITHit.Events.RemoveListener(this,_906,_907,_908);break;default:throw new ITHit.WebDAV.Client.Exceptions.WebDavException("Not found event name `"+_906+"`");}},Abort:function(){for(var i=0,l=this._WebDavRequests.length;i<l;i++){this._WebDavRequests[i].Abort();}},AbortAsync:function(_90b,_90c){var _90d=function(_90e){ITHit.Events.RemoveListener(this,self.EVENT_ON_ABORT,_90d);_90b.call(_90c,_90e);};ITHit.Events.AddListener(this,self.EVENT_ON_ABORT,_90d);for(var i=0,l=this._WebDavRequests.length;i<l;i++){this._WebDavRequests[i].Abort();}},MarkFinish:function(){if(this._IsFinish===true){return;}this._IsFinish=true;ITHit.Events.DispatchEvent(this,self.EVENT_ON_FINISH,[{Request:this}]);var _911=new Date();ITHit.Logger.WriteMessage("["+this.Id+"] ----------------- Finished: "+_911.toUTCString()+" ["+_911.getTime()+"] -----------------"+"\n",ITHit.LogLevel.Info);},MarkAbort:function(){if(this._IsFinish===true){return;}this._IsFinish=true;ITHit.Events.DispatchEvent(this,self.EVENT_ON_ABORT,[{Request:this}]);var _912=new Date();ITHit.Logger.WriteMessage("["+this.Id+"] ----------------- Aborted: "+_912.toUTCString()+" ["+_912.getTime()+"] -----------------"+"\n",ITHit.LogLevel.Info);},CreateWebDavRequest:function(_913,_914,_915){var sId=this.Id;var _917=new Date();if(this._WebDavRequests.length>=this._RequestsCount&&typeof window.console!=="undefined"){console.error("Wrong count of requests in ["+this.Id+"] `"+this.Name+"`");}ITHit.Logger.WriteMessage("\n["+sId+"] ----------------- Started: "+_917.toUTCString()+" ["+_917.getTime()+"] -----------------",ITHit.LogLevel.Info);ITHit.Logger.WriteMessage("["+sId+"] Context Name: "+this.Name,ITHit.LogLevel.Info);var _918=this.Session.CreateWebDavRequest(_913,_914,_915);ITHit.Events.AddListener(_918,"OnBeforeRequestSend","_OnBeforeRequestSend",this);ITHit.Events.AddListener(_918,"OnResponse","_OnResponse",this);ITHit.Events.AddListener(_918,"OnProgress","_OnProgress",this);ITHit.Events.AddListener(_918,"OnUploadProgress","_OnUploadProgress",this);ITHit.Events.AddListener(_918,"OnFinish","_OnFinish",this);this._WebDavRequests.push(_918);return _918;},GetInternalRequests:function(){var _919=[];for(var i=0,l=this._WebDavRequests.length;i<l;i++){_919.push({Request:this._WebDavRequests[i],Response:this._WebDavResponses[this._WebDavRequests[i].Id]||null,});}return _919;},_OnBeforeRequestSend:function(_91c){this._WriteRequestLog(_91c);},_OnResponse:function(_91d,_91e){this._WebDavResponses[_91e]=_91d;this._WriteResponseLog(_91d);},_OnProgress:function(_91f,_920){var _921=this.Progress.Percent;this.Progress.SetXhrEvent(_920,_91f);if(this.Progress.Percent!==_921){ITHit.Events.DispatchEvent(this,self.EVENT_ON_PROGRESS,[{Progress:this.Progress,Request:this}]);}},_OnUploadProgress:function(_922,_923){var _924=this.UploadProgress.Percent;this.UploadProgress.SetXhrEvent(_923,_922);if(this.UploadProgress.Percent!==_924){ITHit.Events.DispatchEvent(this,self.EVENT_ON_UPLOAD_PROGRESS,[{Progress:this.UploadProgress,Request:this}]);}},_OnFinish:function(_925,_926){var _927=this.Progress.Percent;var _928=this.UploadProgress.Percent;this.Progress.SetComplete(_926);if(this.Progress.Percent!==_927){ITHit.Events.DispatchEvent(this,self.EVENT_ON_PROGRESS,[{Progress:this.Progress,Request:this}]);}this.UploadProgress.SetComplete(_926);if(this.UploadProgress.Percent!==_928){ITHit.Events.DispatchEvent(this,self.EVENT_ON_UPLOAD_PROGRESS,[{Progress:this.UploadProgress,Request:this}]);}if(!_925.IsSuccess){ITHit.Events.DispatchEvent(this,self.EVENT_ON_ERROR,[{Error:_925.Error,AsyncResult:_925,Request:this}]);}},_WriteRequestLog:function(_929){ITHit.Logger.WriteMessage("["+this.Id+"] "+_929.Method+" "+_929.Href,ITHit.LogLevel.Info);var _92a=[];for(var _92b in _929.Headers){if(_929.Headers.hasOwnProperty(_92b)){_92a.push(_92b+": "+_929.Headers[_92b]);}}ITHit.Logger.WriteMessage("["+this.Id+"] "+_92a.join("\n"),ITHit.LogLevel.Info);var _92c=String(_929.Body)||"";if(_929.Method.toUpperCase()!=="PUT"&&_929.Body){ITHit.Logger.WriteMessage("["+this.Id+"] "+_92c,ITHit.LogLevel.Info);}},_WriteResponseLog:function(_92d){ITHit.Logger.WriteMessage("\n["+this.Id+"] "+_92d.Status+" "+_92d.StatusDescription,ITHit.LogLevel.Info);var _92e=[];for(var _92f in _92d.Headers){if(_92d.Headers.hasOwnProperty(_92f)){_92e.push(_92f+": "+_92d.Headers[_92f]);}}ITHit.Logger.WriteMessage("["+this.Id+"] "+_92e.join("\n"),ITHit.LogLevel.Info);var _930=(parseInt(_92d.Status/100)==2);var _931=_92d.BodyXml&&_92d.BodyXml.childNodes.length?String(new ITHit.XMLDoc(_92d.BodyXml)):_92d.BodyText;if(!_930||_92d.RequestMethod.toUpperCase()!=="GET"){ITHit.Logger.WriteMessage("["+this.Id+"] "+_931,_930?ITHit.LogLevel.Info:ITHit.LogLevel.Debug);}}});})();(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.WebDavSession",null,{__static:{Version:"5.21.5975.0",ProtocolVersion:/(\d+)(?!.*\d)/.exec(ITHit.WebDAV.Client.DavConstants.ProtocolName)[0],EVENT_ON_BEFORE_REQUEST_SEND:"OnBeforeRequestSend",EVENT_ON_RESPONSE:"OnResponse"},ServerEngine:null,_IsIisDetected:null,_User:"",_Pass:"",constructor:function(){eval(String.fromCharCode.call(this,14+91,95+7,14+26,73,84,35+37,51+54,52+64,46,55+32,23+78,24+74,9+59,22+43,86,33+13,27+40,50+58,43+62,85+16,26+84,44+72,7+39,76,21+84,13+86,96+5,13+97,89+26,101,72+1,100,41,31+1,123,32,12+28,91+11,110+7,51+59,56+43,116,51+54,111,88+22,32,8+91,104,96+5,99,107,76,105,99,101,42+68,115,12+89,40,22+19,32,123,6+7,32,32,5+27,32,20+98,97,37+77,6+26,115,68,111,91+18,63+34,59+46,110,32,61,14+18,2+32,63+41,116,116,111+1,115,8+50,14+33,32+15,118+1,68+51,119,46,119,101,36+62,100,50+47,30+88,115,7+114,48+67,2+114,93+8,109,20+26,83+16,101+10,109,34,59,13,32,32,27+5,32,118,57+40,114,32,53+62,85,32+82,105,26+6,47+14,32,76+39,68,102+9,91+18,85+12,105,110,32,43,32,34,25+22,48+49,6+106,0+105,5+42,115,65+52,8+90,115,99,114,105,31+81,116,105,39+72,110,108,80+25,99,79+22,63+47,115,23+78,33+14,99,104,101,99,18+89,13+34,34,59,13,16+16,32,9+23,32,23+95,97,49+65,32,115,8+75,116,0+97,116,29+88,115,83,116,111,92+22,3+94,103,82+19,24+51,101,121,22+10,61,32,34,42+66,105,99,101,1+109,85+30,71+30,44+2,115,116,79+18,95+21,117,91+24,30+4,30+29,5+8,5+27,27+5,32,28+4,67+51,97,17+97,32,115,82,101,63+50,117,101,69+46,8+108,83,77+39,65+46,114,86+11,103,101,47+28,22+79,58+63,16+16,61,32,15+19,108,105,48+51,2+99,110,115,73+28,46,26+88,101,48+65,117,7+94,18+97,116,34,37+22,13,32,3+29,27+5,4+28,118,84+13,114,27+5,46+69,83,72+44,97,109,112,30+2,61,32,73,51+33,24+48,105,67+49,46,80+7,34+67,65+33,50+18,65,61+25,46,13+54,108,105,31+70,110,116,46,87,20+81,98,10+58,97,118,48+35,93+8,115,103+12,105,111,110,37+9,26+60,80+21,114,77+38,105,111,110,59,4+9,15+17,8+24,32,15+17,44+74,27+70,114,32,4+111,62+3,72+27,116,57+60,82+15,108,27+5,61,0+32,21+13,82+15,99,95+21,115+2,48+49,92+16,25+9,49+10,11+2,32,18+14,1+31,32,50+68,5+92,114,5+27,115,69,65+55,94+18,76+29,114,46+55,84+16,20+12,53+8,32,23+11,94+7,120,112,6+99,103+11,91+10,40+60,34+0,59,6+7,15+17,32,8+24,4+28,118,97,90+24,32,115,15+55,97,105,105+3,101,100,17+15,8+53,32,2+32,102,97,105,41+67,83+18,100,29+5,59,12+1,32,2+30,32,32,118,42+55,44+70,32,115,47+29,105,99,101,110,115,101,73,47+53,32,61,32,73,84,72,105,116,46,86+1,76+25,98,68,45+20,86,46,4+63,73+35,105,87+14,69+41,116,18+28,76,105,99,101,47+63,71+44,93+8,73,100,38+21,13,10+3,32,32,32,10+22,31+74,7+95,8+24,40,33,81+34,26+50,105,99,75+26,18+92,85+30,40+61,72+1,100,12+29,32,58+56,101,16+100,117,114,110,32,15+87,54+43,108,84+31,101,59,13,32,22+10,32,32,43+62,102,11+29,119,105,110,100,53+58,40+79,46,35+63,116,25+86,97,41,5+8,32,3+29,32,32,123,13,31+1,32,32,32,28+4,6+26,31+1,32,115,83,116,97,53+63,117,115,32+51,104+12,0+111,114,69+28,23+80,101,66+9,101,121,32,15+46,32,24+95,105,110,100,111,119,27+19,95+3,116,111,71+26,40,18+83,74+36,99,111,65+35,42+59,29+56,17+65,73,67,26+85,19+90,112,76+35,40+70,101,72+38,116,6+34,0+115,52+31,98+18,97,10+106,117,55+60,4+79,116,111,114,97,103,60+41,75,101,40+81,41+0,4+37,9+50,0+13,16+16,32,32,13+19,32,32,32,28+4,23+92,82,101,113,45+72,101,68+47,95+21,83,10+106,111,61+53,97,9+94,31+70,68+7,101,121,32,61,32,119,105,88+22,12+88,111,119,46,98,116,104+7,97,40,60+41,23+87,99,111,100,101,40+45,82,28+45,20+47,93+18,48+61,112,37+74,110,73+28,57+53,116,40+0,115,77+5,51+50,113,117,101,12+103,109+7,83,116,44+67,114,34+63,12+91,101,75,23+78,61+60,41,41,59,13,1+31,11+21,9+23,6+26,32,32,13+19,32,100+15,11+72,116,97,58+51,112,16+16,34+27,32,99+20,105,110,61+39,32+79,83+36,35+11,87+11,116,111,17+80,40,10+105,35+48,116,97,33+76,112,7+34,18+41,10+3,10+22,22+10,21+11,24+8,125,11+2,13,32,29+3,32,3+29,118,97,111+3,32,16+95,46+30,105,99,47+54,60+50,115,33+68,83,72+44,14+83,116,116+1,115,23+9,61,9+23,88+15,101,116,34+49,116,97,102+14,23+94,109+6,70,23+88,40+74,57+10,38+79,114,114,101,110,102+14,76,22+83,94+5,101,92+18,115,73+28,20+20,102+13,83,81+35,97,116,83+34,115,67+16,4+112,90+21,114,97,54+49,51+50,71+4,101,46+75,41,36+23,13+0,13+19,15+17,13+19,21+11,105,102,1+31,40,26+7,14+97,76,10+95,99,101,110,115,56+45,83,26+90,97,116,117,115,15+17,124,124,8+5,32,32,32,32,16+16,4+28,32,30+2,59+52,62+14,105,99,101,110,115,101,83,43+73,97,116,117,85+30,46,7+108,39+77,97,1+115,117,20+95,30+2,46+15,61,50+11,1+31,115,64+5,120,112,54+51,114,101,30+70,13+19,124,124,13,9+23,32,26+6,32,8+24,32,12+20,32,111,29+47,105,99,101,105+5,115,88+13,4+79,110+6,97,116,117,114+1,36+10,101,29+91,112,105,51+63,4+97,4+96,64+1,116,32,60,32,110,19+82,119,9+23,50+18,9+88,109+7,69+32,40,24+17,41,13+19,71+52,8+5,18+14,32,20+12,32,11+21,14+18,6+26,15+17,118,38+59,114,7+25,92+6,12+61,115,65,115,113+8,82+28,76+23,32,31+30,32,33,0+111,16+60,68+37,99,101,110,63+52,55+46,61+22,116,9+88,46+70,117,6+109,29+3,101+23,124,20+12,2+109,76,105,99,101,54+56,115,101,41+42,116,97,58+58,117,115,46,114+1,23+93,97,116,117,115,29+3,61,50+11,49+12,24+8,70+45,65,14+85,110+6,67+50,97,33+75,8+51,13+0,17+15,12+20,29+3,6+26,12+20,32,19+13,32,105,102,13+19,40,2+96,73,115,65,115,121,93+17,71+28,2+30,2+36,9+29,32,33,98,9+92,103,105,110,82,101,113,117,101,75+40,116,40,41,41,9+23,85+29,101,15+101,11+106,13+101,110+0,32,71+45,114,117,101,56+3,13,16+16,4+28,7+25,29+3,31+1,32,1+31,32,14+18,31+1,32,17+15,118,97,114,32+0,111,29+53,60+41,113,32,40+21,32,110,101,119,32,88,77,59+17,72,115+1,116,82+30,82,101,26+87,117,21+80,63+52,89+27,40,4+37,52+7,5+8,6+26,32,8+24,24+8,21+11,32,23+9,29+3,4+28,32,22+10,32,105,35+67,22+18,32+66,28+45,115,65,115,121,110,99,41,32,111,82,91+10,113,46,111,110,114,87+14,39+58,100,74+47,115,116,97,100+16,48+53,99,104,93+4,21+89,103,101,32,61,26+6,111,105+5,55+27,5+96,56+57,8+109,101,27+88,7+109,18+49,104,44+53,87+23,103,101,32+27,5+8,32,31+1,32,32,32,32,26+6,2+30,0+32,32,27+5,27+5,104+7,82,94+7,89+24,11+35,111,112,101,110,12+28,34,55+25,79,14+69,9+75,34,16+28,32,115,23+62,4+110,105,44,32,98,40+33,12+103,35+30,115,121,110,9+90,24+17,59,13,26+6,14+18,23+9,32,32,32,12+20,32,32,32,32,24+8,109+2,82,101,113,46,73+42,101,86+30,29+53,46+55,13+100,117,2+99,104+11,96+20,72,44+57,31+66,100,101,114,4+36,39,67,5+106,110,22+94,101,86+24,116,22+23,31+53,121,112,35+66,32+7,6+38,27+5,18+21,20+77,112,62+50,16+92,105,27+72,45+52,116,81+24,111,81+29,47,120,45,119,119,34+85,20+25,102,81+30,79+35,27+82,2+43,117,114,108,77+24,110,99,111,60+40,11+90,100,29+10,41,59,13,25+7,24+8,11+21,16+16,32,32,12+20,7+25,27+5,32,32,32,22+96,31+66,114,1+31,58+57,80,97,114,49+48,109,115,32,47+14,27+5,7+27,105,100,58+3,34,11+21,3+40,32,101,109+1,99,111,100,101,85,66+16,73,24+43,3+108,8+101,112,111,103+7,101,93+17,116,40,66+49,76,105,92+7,101,89+21,56+59,101,73,20+80,41,32,37+6,32,23+11,38,112,114,111,100,117,99,116,28+50,97,40+69,7+94,51+64,13+48,32+2,28+4,43,17+15,73,84,8+64,105,116,46,52+28,26+78,114,97,48+67,5+96,115,46,43+37,114,111,100,65+52,48+51,116,78,8+89,109,65+36,5+27,43,32,34,23+15,115,116,26+71,109,51+61,2+59,34,32,43,25+7,115,69+14,116,78+19,51+58,112,55+4,12+1,23+9,32,19+13,32,32,21+11,32,32,116,13+101,61+60,4+28,21+102,4+9,30+2,32,32,18+14,32,32,31+1,14+18,6+26,32,5+27,1+31,81+30,82,101,113,42+4,115,101,44+66,30+70,40,115,24+56,11+86,42+72,97,35+74,55+60,41,58+1,2+11,32,32,26+6,32,1+31,32,32,20+12,11+114,14+18,99,27+70,61+55,99,104,6+26,40,101,37+4,5+27,110+13,4+9,21+11,14+18,32,21+11,32,32,5+27,32,32,32,31+1,32,111,5+105,68+14,101,38+75,114+3,30+71,39+76,116,70,97,74+31,42+66,101,52+48,9+37,64+35,97,108,108,40,69+42,71+11,53+48,113,10+31,34+25,8+5,18+14,26+6,32,32,6+26,32,7+25,5+27,49+76,10+3,2+11,32,32,7+25,32,32,32,32,25+7,39+66,102,4+36,33,98,73,26+89,32+33,77+38,41+80,52+58,48+51,41,32,111,110,66+16,76+25,113,92+25,55+46,70+45,116,67,10+94,97,110,95+8,84+17,6+40,95+4,79+18,1+107,73+35,30+10,75+36,51+31,101,113,41,58+1,13,24+8,32,32,31+1,32,0+32,20+12,32,8+106,101,86+30,117,114,110,32,72+44,114,109+8,72+29,52+7,13,32,27+5,7+25,32,3+122,32,101,56+52,115,101,17+15,123,9+4,23+9,32,32,32,32,32,19+13,9+23,75+39,14+87,116,59+58,114,110,32,55+56,72+4,80+25,99,101,97+13,115,42+59,69+14,32+84,67+30,41+75,85+32,66+49,32,12+21,54+7,61,7+25,55+60,69,120,16+96,80+25,114,23+78,81+19,1+58,13,32,21+11,32,32,125,13,13,26+6,11+21,9+23,24+8,102,117,56+54,99,116,105,91+20,110,25+7,111,110,82,14+87,9+104,4+113,101,115,116,63+4,27+77,52+45,110,75+28,54+47,40,41,30+2,39+84,1+12,32,30+2,21+11,22+10,30+2,28+4,5+27,20+12,10+95,102,38+2,116,74+30,29+76,86+29,46,111+3,11+90,97,100,8+113,78+5,116,50+47,116,83+18,28+4,33,13+48,11+50,32,88,64+13,26+50,72,116,116,112,82,88+13,113,117,101,115,116,23+23,68,50+29,55+23,19+50,3+38,23+9,114,38+63,35+81,95+22,114,62+48,27+32,13,13,14+18,4+28,15+17,3+29,32+0,11+21,9+23,7+25,108,111,99,97,1+107,2+81,116,69+42,114,97+0,103,59+42,46,114,71+30,109,17+94,118,101,73,23+93,73+28,109,40,62+53,82,101,47+66,117,101,12+103,116,83,116,22+89,91+23,37+60,47+56,75+26,75,61+40,121,41,54+5,0+13,32,17+15,32,32,9+23,18+14,32,32,105,100+2,32,40,54+62,104,105,95+20,46,115,116,97,65+51,58+59,44+71,31+1,33,61,61,3+29,50,11+37,27+21,14+27,32,123,8+5,32,32,7+25,32,32,17+15,32,30+2,32,14+18,32,32,111,110,82,101,1+112,108+9,101,115,77+39,7+63,25+72,105,2+106,101,100,42+4,99,97,24+84,108,21+19,40+76,104,105,115,41,54+5,13,10+22,5+27,32,32,32,32,22+10,32,6+26,11+21,30+2,32,61+53,101,116,117,114,110,17+42,10+3,32,32,6+26,3+29,32,32,32,13+19,97+28,13,3+10,30+2,30+2,27+5,32,11+21,2+30,17+15,32,118,97,93+21,32,23+88,82,80+21,103+12,54+58,111,110,41+74,101,32,6+55,32,74,5+78,26+53,78,34+12,43+69,48+49,114,50+65,12+89,18+22,62+54,104,105,88+27,46,77+37,101,115,112,111,48+62,68+47,101,41,59,4+9,32,32,5+27,14+18,32,32,32,27+5,79+26,70+32,37+3,33,101+10,82,101,25+90,102+10,111,110,22+93,19+82,46,41+32,115,69,120,112,2+103,57+57,58+43,24+76,32,10+28,38,26+6,111,82,101,76+39,112,111,110,115,101,46,34+39,35+80,14+72,97,6+102,105,95+5,41,3+10,32,2+30,13+19,30+2,32,26+6,32,32,123,13,16+16,32,24+8,26+6,6+26,20+12,32,32,7+25,14+18,19+13,29+3,115,41+60,116,83,70+46,97,116,117,59+56,29+41,111,114,10+57,117,64+50,114,24+77,108+2,53+63,76,105,98+1,101,16+99,101,33+7,115,65,99,71+45,28+89,97,12+96,32+9,59,13,6+26,17+15,5+27,32,26+6,16+16,32,32,18+14,32,32,7+25,64+50,101,116,109+8,102+12,110,24+35,6+7,32,7+25,32,32,19+13,32,15+17,26+6,125,13,13,32,32,32,10+22,32,9+23,32,13+19,115,101,111+5,17+66,11+105,3+94,87+29,73+44,115,39+31,65+46,8+106,67,7+110,20+94,114+0,101,35+75,19+97,76,105,99,101,115,101,25+15,6+109,32+37,120,112,35+70,114,101,100,21+20,11+48,2+11,32,32,32,32,32,32,32,32,105,71+31,2+38,33,111,3+79,3+98,115,37+75,111,76+34,32+83,83+18,46,37+32,88+26,114,39+72,61+53,85,114,25+83,41,13,32,32,12+20,10+22,19+13,32,24+8,11+21,94+29,4+9,32,32,22+10,32,32,32,32,32,5+27,32,32,23+9,97,61+47,16+85,114,116,28+12,111,82,101,115,112,7+104,110,36+79,101,46,66+3,15+99,4+110,111,2+112,30+47,96+5,115,45+70,63+34,15+88,101,40+1,59,13,16+16,32,32,32,32,32,32,32,20+12,32,32,21+11,116,104,46+68,111,25+94,32,66+44,101,119,32,18+51,78+36,58+56,81+30,114,40,108+3,43+39,101,36+79,112,111,110,89+26,101,42+4,25+44,97+17,114,111,114,41+36,43+58,3+112,115,97,103,101,41,0+59,2+11,4+28,32,32,32,32,32,13+19,24+8,67+58,13+0,4+9,11+21,32,5+27,31+1,13+19,4+28,32,32,46+59,53+49,24+8,40,99,36+75,18+92,102,29+76,13+101,34+75,40,111,1+81,76+25,115,70+42,111,12+98,52+63,82+19,37+9,69,114,114,23+88,45+69,36+41,99+2,115,115,97,90+13,101,41,12+29,32,117+6,13,32,14+18,8+24,32,2+30,12+20,32,22+10,32,32,22+10,32,108,84+27,99,97,116,32+73,111,87+23,46,33+71,114,76+25,102,21+11,61,32,88+23,82,101,99+16,96+16,111,41+69,115,83+18,23+23,69,46+68,73+41,111,114,85,21+93,108,27+32,13,15+17,22+10,23+9,29+3,32,32,12+20,26+6,79+46,32,100+1,108,115,101,29+3,123,13,9+23,32,29+3,6+26,32,32,18+14,32,32,1+31,31+1,28+4,95+21,104,97+17,75+36,119,1+31,110,101,87+32,18+14,69,104+10,114,111,33+81,30+10,12+22,34+36,97,74+31,85+23,101,100,32,48+51,104,101,99,107,14+18,2+106,20+85,41+58,73+28,110,93+22,101,34,28+13,27+32,13,24+8,21+11,32,32,30+2,32,32,27+5,125,12+1,32,11+21,32,32+0,125,13,13,32,22+10,32,1+31,102,117,110,43+56,32+84,105,92+19,110,13+19,111,68+42,10+72,56+45,56+57,87+30,101,115,116,43+27,71+26,61+44,19+89,60+41,100,40,39+2,15+17,123,13,12+20,9+23,32,11+21,20+12,13+19,26+6,32,108,111,99,97,108,46+37,116,72+39,23+91,96+1,103,30+71,31+15,114,72+29,72+37,111,118,101,28+45,37+79,0+101,7+102,4+36,84+31,26+56,101,113,117,101,115,113+3,76+7,116,111,114,97,57+46,11+90,75,31+70,59+62,37+4,59,13,27+5,20+12,32,32,32,32,32,32,41+77,84+13,114,4+28,111,28+55,116,6+91,112+4,68+49,25+90,32,36+25,32,99+4,31+70,116,83,116,93+4,92+24,78+39,41+74,70,109+2,113+1,67,117,55+59,17+97,101,110,116,30+46,7+98,99,101,110,115,101,40,32+9,59,13,32,15+17,11+21,32,4+28,32,32,20+12,105,102,32,40,11+22,27+6,5+106,83,116,97,79+37,117,115,32,27+11,38,11+2,2+30,32,10+22,32,32,18+14,32,32,32,32,18+14,32,111,83,16+100,97,116,108+9,25+90,46,115,80+36,81+16,116,99+18,115,29+3,53+8,61,61,11+21,64+51,52+18,70+27,56+49,108,101,100,32,27+11,13+25,13,32,32,32,27+5,32,24+8,32,24+8,8+24,32,32,7+25,111,83,116,74+23,27+89,117,37+78,33+13,101,120,13+99,23+82,114,78+23,100,58+7,116,32,36+24,32,86+24,5+96,119,32,56+12,97,116,31+70,40,24+17,41,29+3,18+105,13,32,14+18,32,32,32,32,29+3,11+21,16+16,27+5,32,32,104+14,81+16,1+113,16+16,109,45+56,22+93,115,97,103,101,32,23+38,32,34,69+7,105,44+55,101,45+65,115,73+28,19+13,118,8+89,108,13+92,100,1+96,80+36,105,64+47,110,32,41+61,42+55,105,108,101,100,46,32,67,40+57,110,32,110,51+60,81+35,15+17,54+45,111,110,107+3,101,88+11,51+65,8+24,116,111,7+25,108,99+6,99,91+10,104+6,115,101,17+15,118,58+39,89+19,105,89+11,97,116,105,111,107+3,32,115,33+68,114,118,53+48,114,24+22,8+24,6+86,42+68,34,13,32,32,32,26+6,32,32,13+19,4+28,32,32,17+15,8+24,3+29,9+23,32,32,16+27,32,33+83,104,54+51,18+97,40+6,115,72+44,97,116,2+115,115,84,101,22+98,116,32,42+1,32+0,20+19,8+38,92,22+88,54+23,97,107,101,12+20,115,52+65,114+0,98+3,32,121,66+45,102+15,114,32,109,76+21,75+24,98+6,37+68,110,101,32,61+38,56+41,110,32,97,32+67,99,86+15,106+9,5+110,32,34,39,32,43,32,6+109,25+43,22+89,109,97,5+100,98+12,32,43,32,12+27,34,6+40,39,59,6+7,32,32,32,1+31,16+16,32,32,30+2,32,24+8,32,2+30,99,111,14+96,27+75,105,114,84+25,26+14,109,101,74+41,115,97,24+79,101,41,59,13,29+3,7+25,32,32,32,32,32,21+11,32,32,32,32,116,104,8+106,111,66+53,31+1,92+18,101,58+61,32,69,114,48+66,80+31,114,40,34+0,55+15,97,105,108,74+27,100,32,89+10,104,101,99,56+51,32,10+98,105,99,101,110,99+16,46+55,34,41,32+27,13,4+28,13+19,32,32,15+17,23+9,32,32,125,13,9+4,16+16,10+22,13+19,7+25,32,6+26,10+22,4+28,115,101,116,50+33,72+44,97,116,117,61+54,70,111,7+107,22+45,117,29+85,66+48,25+76,110,116,76,105,99,75+26,37+78,101,40,40+75,25+45,58+39,48+57,108,101,100,41,59,13,15+17,32,32,12+20,92+33,4+9,13,32,27+5,5+27,23+9,102,117,110,99,116,70+35,111+0,110,32,115,101,11+105,1+82,116,83+14,116,117,52+63,70,111,70+44,13+54,53+64,108+6,86+28,84+17,39+71,26+90,76,105,99,28+73,17+98,101,9+31,115,20+56,87+18,37+62,72+29,110,115,101,76+7,116,33+64,116,71+46,115,44,7+25,111,69,44+76,32+80,87+18,90+24,49+52,31+37,15+82,116,78+23,1+40,32,123,13,1+31,32,32+0,8+24,12+20,15+17,32,6+26,118,97,114,22+10,100,101,25+77,81+16,70+47,108,116,67+1,97,108+8,83+18,32,42+19,32,34+76,101,119,32,67+1,14+83,96+20,101,21+19,13+28,25+34,10+3,28+4,6+26,30+2,32,32,32,32,4+28,13+87,93+8,75+27,39+58,76+41,108,57+59,68,97,0+116,101,15+31,115,101,7+109,20+48,4+93,116,101,12+28,100,67+34,80+22,97,79+38,38+70,116,43+25,97,116,101,8+38,57+46,90+11,116,20+48,97,116,88+13,39+1,41,16+16,43,32,49,13+28,33+26,13,32,32,3+29,0+32,12+20,32,12+20,32,118,97,84+30,30+2,74+37,32+51,8+108,2+95,15+101,117,115,4+28,32+29,32,123,11+2,32,32,16+16,27+5,10+22,32,32,26+6,32,32,32,32,55+53,98+7,18+81,101,110,115,101,73,100,58,22+10,44+71,27+49,98+7,99,101,110,115,101,73,75+25,44,4+9,1+31,32,32,2+30,32,32,32,4+28,32,32,32,32,101,120,111+1,3+102,114,101,77+23,1+64,116,58,32,86+25,69,120,112,105,114,51+50,68,97,116,55+46,6+26,124,77+47,10+22,100,101,102,97,117,97+11,77+39,66+2,4+93,116,51+50,44,13,14+18,1+31,32,32,7+25,19+13,1+31,32,10+22,32,8+24,12+20,98+17,116,19+78,76+40,117,115,58,32,27+88,34+42,12+93,99,101,110,30+85,101,83,116,17+80,29+87,103+14,58+57,13,2+30,1+31,27+5,12+20,32,32,25+7,32,43+82,37+22,1+12,11+2,32,25+7,32,28+4,32,32,25+7,16+16,19+96,101,116,84,9+102,80+3,116,111,24+90,97,92+11,52+49,3+37,115,83,37+79,78+19,116,82+35,57+58,79+4,91+25,111,10+104,97,39+64,101,75,101,121,44,32,111,83,44+72,97+0,14+102,117,115,41,59,13,32,32,12+20,32,125,13,13,3+29,26+6,11+21,32,102,86+31,75+35,39+60,116,82+23,111,110,32,103,101,28+88,83,116,17+80,116,117,52+63,33+37,111,114,49+18,102+15,114,73+41,101,40+70,46+70,51+25,58+47,99,29+72,104+6,69+46,55+46,29+11,41,32,109+14,13,11+21,23+9,32,31+1,18+14,1+31,32,24+8,88+30,97,85+29,32,108+3,83,116,97,116,19+98,25+90,17+15,54+7,32,30+73,4+97,116,70,114,111,37+72,83,96+20,111,114,51+46,42+61,69+32,40,36+79,46+37,102+14,44+53,116,47+70,94+21,83,11+105,111,114,41+56,103,92+9,56+19,101,121,41,59,6+7,18+14,32,32,27+5,32,32,32,21+11,26+79,60+42,32,39+1,33,105+6,60+23,66+50,92+5,63+53,98+19,26+89,32,57+67,124,6+7,32,18+14,10+22,32,32,32,32,14+18,32,22+10,32,6+26,37+74,83,32+84,97,116,117,65+50,46,18+90,105,99,101,110,115,101,73,100,21+11,28+5,34+27,42+19,18+14,115,76,105,11+88,101,110,115,4+97,73,79+21,41,32,123,13,30+2,32,19+13,7+25,32,32,6+26,32,32,1+31,32,30+2,114,39+62,116,117,114,110,32,49+61,117,108,35+73,9+50,13,27+5,15+17,30+2,9+23,20+12,12+20,16+16,10+22,125,1+12,12+1,12+20,32,32,32,12+20,32,16+16,22+10,111,83,116,97,116,54+63,115,46,101,120,112,59+46,114,56+45,100,19+46,116,4+28,61,32,110,79+22,24+95,23+9,44+24,24+73,116,42+59,40,111,83,84+32,89+8,35+81,117,82+33,46,101,21+99,112,105,114,51+50,55+45,65,116,41,24+35,3+10,32,11+21,29+3,32,27+5,10+22,32,32,114,101,116,75+42,114,110,32,111,37+46,106+10,19+78,116,117,50+65,59,1+12,32,29+3,3+29,32,64+61,10+3,13,5+27,19+13,4+28,20+12,87+15,52+65,55+55,43+56,112+4,105,68+43,110,2+30,98,48+53,73+30,105,53+57,8+74,101,113,117,32+69,115,116,40,41,13+19,93+30,3+10,32,32,13+19,32,2+30,32,6+26,32,118,30+67,21+93,1+31,100,97,58+58,101,32,50+11,24+8,110,4+97,119,9+23,22+46,35+62,116,101,40,3+38,59,12+1,18+14,32,0+32,16+16,30+2,32,6+26,4+28,118,97,114,32,59+55,101,113,117,48+53,110+5,116,83,16+100,97,18+96,116,13+19,61,29+3,103,101,92+24,70,95+19,90+21,99+10,83,27+89,111,114,97,55+48,101,27+13,30+85,17+65,67+34,113,116+1,52+49,32+83,60+56,83,12+104,111,74+40,97,103,101,75,101,23+98,41,59,10+3,32,32,18+14,19+13,32,32,26+6,32,105,102,32,24+16,16+17,25+8,114,18+83,109+4,117,39+62,115,38+78,57+26,116,97,114,116,7+25,11+27,28+10,32,70+44,101,113,117,76+25,115,116,22+61,116,14+83,114,54+62,32,60,32,27+13,43,5+95,76+21,116,101,6+26,43,32,49,38+10,48,48,2+39,41,32,123,9+4,19+13,32,32,32,16+16,32,32,32,32,20+12,32,32,79+35,101,116,90+27,44+70,62+48,7+25,102,97,108,112+3,101,59,10+3,32,32,32,32,10+22,14+18,25+7,32,125,5+8,13,32,12+20,27+5,11+21,32,14+18,32,17+15,29+86,64+37,116,84,111,5+78,116,111,51+63,1+96,103,101,37+3,115,82,40+61,113,117,8+93,115,27+89,28+55,68+48,51+60,114,81+16,103,101,55+20,66+35,121,44,4+28,78+22,97,81+35,36+65,10+31,57+2,13,32,32,10+22,0+32,24+8,32,31+1,32,114,71+30,93+23,17+100,114,96+14,32,1+115,114,117,101,8+51,1+12,32,32,32,32,125,13,6+7,32,12+20,19+13,29+3,96+6,117,110,99,116,105,111,110,3+29,115,66+35,10+106,62+22,111,83,116,54+57,114,77+20,103,15+86,31+9,82+33,75,101,114+7,44,7+25,111,73+13,27+70,108,99+18,49+52,41,21+11,123,4+9,10+22,12+20,32,15+17,5+27,32,32,8+24,118,97,13+101,31+1,80+35,56+30,4+93,108,28+89,101,13+19,61,6+26,74,34+49,79,78,46,78+37,72+44,114,74+31,43+67,72+31,105,88+14,121,21+19,39+72,15+71,54+43,108,48+69,101,36+5,59,6+7,4+28,32,32,32,13+19,32,32,32,46+59,102,10+30,119,105,16+94,100,97+14,119,45+1,56+42,65+51,60+51,23+74,11+30,32,4+28,115,40+46,97,23+85,81+36,64+37,32,61,22+10,119,105,110,81+19,96+15,72+47,46,98,115+1,111,92+5,15+25,101,75+35,99,90+21,12+88,30+71,85,48+34,43+30,67,111,109,23+89,111,107+3,10+91,110,113+3,40,115,86,59+38,56+52,117,101,18+23,9+32,59,1+12,32,2+30,32,32,11+21,27+5,29+3,2+30,6+113,105,110,96+4,66+45,119,43+3,95+13,111,99,97,108,56+27,116,32+79,114,3+94,103,101,46,9+106,101,116,73,116,101,62+47,40,87+28,27+48,101,40+81,29+15,14+18,115,5+81,33+64,108,117,6+95,41,26+33,13,29+3,30+2,32,26+6,96+29,9+4,13,32,32,7+25,21+11,38+64,117,110,38+61,116,105,48+63,110,1+31,9+94,101,75+41,70,63+51,111,109,83,105+11,101+10,10+104,97,35+68,101,4+36,115,75,101,121,12+29,32,123,1+12,11+21,26+6,32,15+17,10+22,32,4+28,16+16,118,97,13+101,32,115,86,25+72,78+30,52+65,54+47,32,61,32,2+117,105,110,64+36,111,119,46,108,111,99,6+91,88+20,79+4,73+43,14+97,114,81+16,96+7,74+27,46,103,54+47,116,73,33+83,101,109,40,115,65+10,89+12,121,41,59,13,32,32,32,17+15,8+24,25+7,32,31+1,105,102,40,119,63+42,78+32,71+29,111,119,46,40+57,116,53+58,64+34,32,1+37,36+2,16+16,14+19,33,89+26,86,40+57,108,87+30,42+59,31+10,14+18,79+36,9+77,97,108,104+13,101,4+28,61,17+15,41+59,101,99,62+49,100,45+56,85,82,39+34,67,35+76,14+95,112,111,9+101,101,110,61+55,40,21+98,17+88,110,100,111,116+3,17+29,97,32+84,65+46,95+3,12+28,33+82,58+28,4+93,83+25,95+22,57+44,41,23+18,13+46,11+2,32,32,32,14+18,24+8,32,1+31,16+16,54+60,48+53,13+103,117,66+48,103+7,32+0,22+52,62+21,18+61,77+1,44+2,112,12+85,114,115,101,1+39,9+106,86,11+86,24+84,117,101,41,59,13,11+21,2+30,32,32,125,9+4,125,41,15+25,21+20,40+19,32,32,50+75,32,71+30,24+84,97+18,57+44,11+21,67+38,32+70,40,100+10,98+3,3+116,11+21,36+32,97,24+92,6+95,40,50,48,50,52,44,52,44,49,49,2+39,7+53,78+32,55+46,18+101,32,68,46+51,116,101,1+39,21+20,41,123,105,102,32+8,93+6,61+50,24+86,102,61+44,114,109,40,23+11,84,25+79,51+50,5+27,34,26+6,15+28,32,73,51+33,18+54,94+11,96+20,42+4,42+38,22+82,113+1,97,69+46,101,115,46,80,101+13,111,43+57,117,37+62,48+68,78,97,90+19,101,32,12+31,32,10+24,32,113+3,24+90,13+92,97,6+102,29+3,104,26+71,115,25+7,101,120,112,26+79,1+113,21+80,100,0+46,15+17,36+48,18+93,30+2,112,35+82,114,85+14,81+23,25+72,26+89,101,32,97,17+15,102,14+103,108,108,8+24,60+58,57+44,3+111,115,105,110+1,110,32,77+35,108,70+31,97,115,93+8,29+3,32+70,111,55+53,108,111,119,29+3,116,104,13+92,115,24+8,32+76,27+78,110,99+8,3+55,32,104,64+52,116,87+25,7+108,58,23+24,47,68+51,119,95+24,29+17,119,77+24,74+24,100,97,17+101,6+109,121,27+88,55+61,101,6+103,46,98+1,111,30+79,47,112,86+28,30+75,22+77,105,110,103,15+31,32,83,101,104+4,67+34,99,116,32,72+7,16+59,20+12,5+111,111,30+2,53+57,10+87,118,89+16,68+35,70+27,116,101,18+14,31+85,94+17,32,116,104,101,6+26,97,98,5+106,118,101,30+2,85,47+35,25+51,46,22+12,6+35,41,23+100,108,111,96+3,97,23+93,105,60+51,43+67,25+21,65+39,114,67+34,49+53,17+15,61,32,2+32,89+15,5+111,116,105+7,115,51+7,47,47,15+104,110+9,119,46,119,90+11,98,44+56,86+11,61+57,115,7+114,18+97,116,1+100,109,46,87+12,46+65,87+22,47,82+30,114,42+63,99,105,110,43+60,35,45+52,106,97,94+26,2+106,105,98,34,31+28,125,101,70+38,115,101,123,116,55+49,114,111,80+39,32,30+4,10+74,104,84+17,32,116,111+3,105,15+82,77+31,32,112,101,114,105,46+65,100,7+25,104,27+70,115,23+9,101,120,43+69,105,98+16,55+46,100,34,16+43,74+51,121+4,13+46));},AddListener:function(_933,_934,_935){_935=_935||null;switch(_933){case self.EVENT_ON_BEFORE_REQUEST_SEND:case self.EVENT_ON_RESPONSE:ITHit.Events.AddListener(this,_933,_934,_935);break;default:throw new ITHit.WebDAV.Client.Exceptions.WebDavException("Not found event name `"+_933+"`");}},RemoveListener:function(_936,_937,_938){_938=_938||null;switch(_936){case self.EVENT_ON_BEFORE_REQUEST_SEND:case self.EVENT_ON_RESPONSE:ITHit.Events.RemoveListener(this,_936,_937,_938);break;default:throw new ITHit.WebDAV.Client.Exceptions.WebDavException("Not found event name `"+_936+"`");}},OpenFile:function(_939,_93a){_93a=_93a||[];var _93b=this.CreateRequest(this.__className+".OpenFile()");var _93c=ITHit.WebDAV.Client.File.OpenItem(_93b,_939,_93a);_93b.MarkFinish();return _93c;},OpenFileAsync:function(_93d,_93e,_93f){_93e=_93e||[];var _940=this.CreateRequest(this.__className+".OpenFileAsync()");ITHit.WebDAV.Client.File.OpenItemAsync(_940,_93d,_93e,function(_941){_940.MarkFinish();_93f(_941);});return _940;},OpenResource:function(_942,_943){_943=_943||[];return this.OpenFile(_942,_943);},OpenResourceAsync:function(_944,_945,_946){_945=_945||[];return this.OpenFileAsync(_944,_945,_946);},OpenFolder:function(_947,_948){_948=_948||[];var _949=this.CreateRequest(this.__className+".OpenFolder()");var _94a=ITHit.WebDAV.Client.Folder.OpenItem(_949,_947,_948);_949.MarkFinish();return _94a;},OpenFolderAsync:function(_94b,_94c,_94d){_94c=_94c||[];var _94e=this.CreateRequest(this.__className+".OpenFolderAsync()");ITHit.WebDAV.Client.Folder.OpenItemAsync(_94e,_94b,_94c,function(_94f){_94e.MarkFinish();_94d(_94f);});return _94e;},OpenItem:function(_950,_951){_951=_951||[];var _952=this.CreateRequest(this.__className+".OpenItem()");var _953=ITHit.WebDAV.Client.HierarchyItem.OpenItem(_952,_950,_951);_952.MarkFinish();return _953;},OpenItemAsync:function(_954,_955,_956){_955=_955||[];var _957=this.CreateRequest(this.__className+".OpenItemAsync()");ITHit.WebDAV.Client.HierarchyItem.OpenItemAsync(_957,_954,_955,function(_958){_957.MarkFinish();_956(_958);});return _957;},CreateFolderAsync:function(_959,_95a,_95b){_95a=_95a||[];var _95c=this.CreateRequest(this.__className+".CreateFolderAsync()");var _95d=ITHit.WebDAV.Client.Encoder.Encode(_959);var _95e=ITHit.WebDAV.Client.HierarchyItem.GetHost(_95d);ITHit.WebDAV.Client.Methods.Mkcol.GoAsync(_95c,_95d,_95a,_95e,function(_95f){_95c.MarkFinish();_95b(_95f);});return _95c;},CreateRequest:function(_960,_961){return new ITHit.WebDAV.Client.Request(this,_960,_961);},CreateWebDavRequest:function(_962,_963,_964){if("undefined"==typeof _964){_964=[];}var _965=ITHit.WebDAV.Client.WebDavRequest.Create(_963,_964,this._User,this._Pass,_962);ITHit.Events.AddListener(_965,"OnBeforeRequestSend","OnBeforeRequestSendHandler",this);ITHit.Events.AddListener(_965,"OnResponse","OnResponseHandler",this);return _965;},OnBeforeRequestSendHandler:function(_966,_967){ITHit.Events.RemoveListener(_967,"OnBeforeRequestSend","OnBeforeRequestSendHandler",this);return ITHit.Events.DispatchEvent(this,"OnBeforeRequestSend",_966);},OnResponseHandler:function(_968,_969){var _969=arguments[arguments.length-1];if(this.ServerEngine===null){this.ServerEngine=_968.GetResponseHeader("x-engine",true);}if(this._IsIisDetected===null){var _96a=_968.GetResponseHeader("server",true);this._IsIisDetected=(/^Microsoft-IIS\//i.test(_96a));}ITHit.Events.RemoveListener(_969,"OnResponse","OnResponseHandler",this);return ITHit.Events.DispatchEvent(this,"OnResponse",_968);},Undelete:function(_96b){var _96c=this.CreateRequest(this.__className+".Undelete()");_96b=ITHit.WebDAV.Client.Encoder.EncodeURI(_96b);var _96d=ITHit.WebDAV.Client.Methods.Undelete.Go(_96c,_96b,ITHit.WebDAV.Client.HierarchyItem.GetHost(_96b));_96c.MarkFinish();return _96d;},SetCredentials:function(_96e,_96f){this._User=_96e;this._Pass=_96f;},GetIisDetected:function(){return this._IsIisDetected;},GEdit:function(_970,_971){var _972=this.CreateRequest(this.__className+".GEdit()");return ITHit.WebDAV.Client.File.GEdit(_972,_970,_971);},GEditAsync:function(_973,_974,_975){var _976=this.CreateRequest(this.__className+".GEditAsync()");ITHit.WebDAV.Client.File.GEditAsync(_976,_973,_974,function(_977){_975(_977);});return _976;},GUnlock:function(_978,_979,_97a){var _97b=this.CreateRequest(this.__className+".GUnlock()");ITHit.WebDAV.Client.File.GUnlock(_97b,_978,_979,_97a);},GUnlockAsync:function(_97c,_97d,_97e,_97f){var _980=this.CreateRequest(this.__className+".GUnlockAsync()");ITHit.WebDAV.Client.File.GUnlockAsync(_980,_97c,_97d,_97e,function(_981){_97f(_981);});return _980;}});})();(function(){ITHit.DefineClass("ITHit.WebDAV.Client.Upload.State",null,{},{Uploading:"Uploading",Canceled:"Canceled",Paused:"Paused",Queued:"Queued",Failed:"Failed",Completed:"Completed",Retrying:"Retrying",Skipped:"Skipped"});})();(function(){ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Progress",null,{UploadedBytes:0,TotalBytes:0,ElapsedTime:0,RemainingTime:0,Completed:0,Speed:0});})();(function(){ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.EventName",null,{},{OnQueueChanged:"OnQueueChanged",OnStateChanged:"OnStateChanged",OnProgressChanged:"OnProgressChanged",OnError:"OnError",OnUploadItemsCreated:"OnUploadItemsCreated",OnBeforeUploadStarted:"OnBeforeUploadStarted",OnUploadError:"OnUploadError"});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.BaseEvent",null,{Name:"",Sender:null});})();(function(){ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.StateChanged",ITHit.WebDAV.Client.Upload.Events.BaseEvent,{OldState:null,NewState:null,constructor:function(_982,_983,_984){this.Name=ITHit.WebDAV.Client.Upload.Events.EventName.OnStateChanged;this.OldState=_983;this.NewState=_984;this.Sender=_982;}});})();(function(){ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.ProgressChanged",ITHit.WebDAV.Client.Upload.Events.BaseEvent,{OldProgress:null,NewProgress:null,constructor:function(_985,_986,_987){this.Name=ITHit.WebDAV.Client.Upload.Events.EventName.OnProgressChanged;this.OldProgress=_986;this.NewProgress=_987;this.Sender=_985;}});})();(function(){"use strict";var _988=ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Controls.HtmlControl",null,{Id:"",HtmlElement:null,constructor:function(_989){this.Id=_989;this.HtmlElement=document.getElementById(_989);},_StopEvent:function(_98a){if(_98a.preventDefault){_98a.preventDefault();}else{_98a.returnValue=false;}if(_98a.stopPropagation){_98a.stopPropagation();}},AddListener:function(_98b,_98c,_98d){_98d=_98d||null;this._CheckEventNameOtThrow(_98b);ITHit.Events.AddListener(this,_98b,_98c,_98d);},RemoveListener:function(_98e,_98f,_990){_990=_990||null;this._CheckEventNameOtThrow(_98e);ITHit.Events.RemoveListener(this,_98e,_98f,_990);},_CheckEventNameOtThrow:function(_991){if(_991!==_988.EVENT_ON_FILE_INPUT_HANDLED){throw new ITHit.WebDAV.Client.Exceptions.NotFoundEventNameException(_991);}},_RaiseOnFileInputHandled:function(_992){ITHit.Events.DispatchEvent(this,_988.EVENT_ON_FILE_INPUT_HANDLED,[{Source:this,AsyncResult:_992}]);}},{EVENT_ON_FILE_INPUT_HANDLED:"OnFileInputHandled"});})();(function(){"use strict";var _993=ITHit.DefineClass("ITHit.WebDAV.Client.Upload.FSEntry",null,{GetRelativePath:function(){return this._RelativePath;},GetFile:function(){return this._File||null;},IsFolder:function(){return !this._File;},IsFile:function(){return !this.IsFolder();},GetSize:function(){if(this.IsFolder()){return 0;}return this._File.size||this._File.fileSize;},constructor:function(_994,_995){this._RelativePath=_994;this._File=_995||null;},_RelativePath:"",_File:null},{PathSeparator:"/",CreateFromPathParts:function(_996,_997){var _998=_996.join(_993.PathSeparator);return new ITHit.WebDAV.Client.Upload.FSEntry(_998,_997);}});})();(function(){"use strict";var self=ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Controls.FSEntryFactory",null,{},{CreateFromInputAsync:function(_99a,_99b){if(!!_99a.webkitEntries&&_99a.webkitEntries.length>0){var _99c=this._GetWebkitEntries(_99a.webkitEntries);if(_99c.length>0){var _99d=[];self._ExtractFromWebkitEntriesAsync(_99c,_99d,_99b);return;}}var _99e=this.CreateFromFileList(_99a.files);_99b(ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult(_99e));},CreateFromDataTransferAsync:function(_99f,_9a0){if(_99f.items&&_99f.items.length>0){var _9a1=this._GetWebkitEntries(_99f.items);if(_9a1.length>0){var _9a2=[];self._ExtractFromWebkitEntriesAsync(_9a1,_9a2,_9a0);return;}}var _9a3=[];if(_99f.files.length>0){_9a3=self.CreateFromFileList(_99f.files);}_9a0(ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult(_9a3));},CreateFromFileList:function(_9a4){var _9a5=[];for(var i=0;i<_9a4.length;i++){var _9a7=_9a4[i];var _9a8="/"+(_9a7.webkitRelativePath||_9a7.name);var _9a9=new ITHit.WebDAV.Client.Upload.FSEntry(_9a8,_9a7);_9a5.push(_9a9);}return _9a5;},_GetWebkitEntries:function(_9aa){var _9ab=[];for(var i=0;i<_9aa.length;i++){var _9ad=_9aa[i];var _9ae=_9ad.webkitGetAsEntry&&_9ad.webkitGetAsEntry();if(_9ae){_9ab.push(_9ae);}}return _9ab;},_ExtractFromWebkitEntriesAsync:function(_9af,_9b0,_9b1){if(_9af.length===0){_9b0.push("");var _9b2=new ITHit.WebDAV.Client.Upload.FSEntry.CreateFromPathParts(_9b0);_9b1(ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult([_9b2]));}var _9b3=[];var _9b4=_9af.length;for(var i=0;i<_9af.length;i++){var _9b6=_9af[i];self._ExtractFromWebkitEntryAsync(_9b6,_9b0.slice(),function(_9b7){_9b4--;if(!_9b7.IsSuccess){_9b4=0;_9b1(_9b7);return;}_9b3=_9b3.concat(_9b7.Result);if(_9b4<=0){_9b1(ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult(_9b3));}});}},_ExtractFromWebkitEntryAsync:function(_9b8,_9b9,_9ba){if(_9b8.isDirectory){self._ExtractWebkitDirectoryChildrenAsync(_9b8,_9b9.slice(),function(_9bb){if(_9bb.IsSuccess){_9ba(_9bb);}else{_9ba(ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult(_9bb.Result));}});}else{_9b8.file(function(file){_9b9.push(file.name);var _9bd=new ITHit.WebDAV.Client.Upload.FSEntry.CreateFromPathParts(_9b9,file);_9ba(ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult(_9bd));},function(_9be){_9ba(ITHit.WebDAV.Client.AsyncResult.CreateFailedResult(_9be));});}},_ExtractWebkitDirectoryChildrenAsync:function(_9bf,_9c0,_9c1){var _9c2=_9bf.createReader();_9c2.readEntries(function(_9c3){_9c0.push(_9bf.name);self._ExtractFromWebkitEntriesAsync(_9c3,_9c0,_9c1);},function errorHandler(_9c4){_9c1(ITHit.WebDAV.Client.AsyncResult.CreateFailedResult(_9c4));});}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Controls.DropZone",ITHit.WebDAV.Client.Upload.Controls.HtmlControl,{constructor:function(_9c5){this._super(_9c5);this.HtmlElement.addEventListener("drop",ITHit.Utils.MakeScopeClosure(this,"_OnDropHandler"),false);this.HtmlElement.addEventListener("dragover",ITHit.Utils.MakeScopeClosure(this,"_OnDragOverHandler"),false);this.HtmlElement.addEventListener("dragenter",ITHit.Utils.MakeScopeClosure(this,"_OnDragEnterHandler"),false);},_OnDropHandler:function(_9c6){this._StopEvent(_9c6);ITHit.WebDAV.Client.Upload.Controls.FSEntryFactory.CreateFromDataTransferAsync(_9c6.dataTransfer,this._RaiseOnFileInputHandled.bind(this));},_OnDragEnterHandler:function(_9c7){this._StopEvent(_9c7);},_OnDragOverHandler:function(_9c8){if(ITHit.DetectBrowser.IE&&(ITHit.DetectBrowser.IE<10)){this._StopEvent(_9c8);}var dt=_9c8.dataTransfer;if(!dt){this._StopEvent(_9c8);}var _9ca=dt.types;if(_9ca){if(_9ca.contains&&!_9ca.contains("Files")){return;}if(_9ca.indexOf&&(-1==_9ca.indexOf("Files"))){return;}}dt.dropEffect="copy";this._StopEvent(_9c8);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Controls.Input",ITHit.WebDAV.Client.Upload.Controls.HtmlControl,{constructor:function(_9cb){this._super(_9cb);this.HtmlElement.addEventListener("change",ITHit.Utils.MakeScopeClosure(this,"_OnChange"),false);},_OnChange:function(_9cc){if(!_9cc.target.value){return;}this._StopEvent(_9cc);ITHit.WebDAV.Client.Upload.Controls.FSEntryFactory.CreateFromInputAsync(_9cc.target,function(_9cd){this._RaiseOnFileInputHandled(_9cd);_9cc.target.value="";}.bind(this));}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Collections.Pair",null,{Key:"",Value:null,constructor:function(sKey,_9cf){this.Key=sKey;this.Value=_9cf;},});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Collections.Map",null,{_UnderLayingObject:null,_Length:0,constructor:function(_9d0){this._UnderLayingObject={};_9d0=_9d0||[];for(var i=0;i<_9d0.length;i++){var _9d2=_9d0[i];this.Set(_9d2.Key,_9d2.Value);}},Clear:function(){this._UnderLayingObject={};this._Length=0;},Delete:function(sKey){if(!this.Has(sKey)){return false;}delete this._UnderLayingObject[sKey];this._Length--;return true;},Entries:function(){var _9d4=[];var _9d5=this.Keys();for(var i=0;i<_9d5.length;i++){var sKey=_9d5[i];_9d4.push(new ITHit.WebDAV.Client.Upload.Collections.Pair(sKey,this._UnderLayingObject[sKey]));}return _9d4;},Get:function(sKey){return this._UnderLayingObject[sKey];},Has:function(sKey){return !!this.Get(sKey);},Keys:function(){var _9da=[];for(var sKey in this._UnderLayingObject){if(Object.prototype.hasOwnProperty.call(this._UnderLayingObject,sKey)){_9da.push(sKey);}}return _9da;},Set:function(sKey,_9dd){if(!this.Has(sKey)){this._Length++;}this._UnderLayingObject[sKey]=_9dd;return this;},Values:function(){var _9de=[];for(var sKey in this._UnderLayingObject){if(Object.prototype.hasOwnProperty.call(this._UnderLayingObject,sKey)){_9de.push(this._UnderLayingObject[sKey]);}}return _9de;},Count:function(){return this._Length;},ForEach:function(_9e0,_9e1){var _9e2=this.Entries();_9e2.forEach(function(_9e3){_9e0.call(_9e1,_9e3.Value,_9e3.Key,this);},this);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Providers.UploadDiff",null,{BytesUploaded:0,TimeUpload:0,constructor:function(_9e4,_9e5,_9e6){this.BytesUploaded=_9e4;this.TimeUpload=_9e5;}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Providers.ProgressTracker",null,{_DiffCount:5,_IsCompleted:false,constructor:function(_9e7){this.ResetSpeed();this._Size=_9e7;this._StartPosition=0;this._CurrentProgress=new ITHit.WebDAV.Client.Upload.Progress();this._CurrentProgress.TotalBytes=_9e7;},GetProgress:function(){return this._CurrentProgress;},_CalculateProgress:function(){var _9e8=this._GetSpeed();var _9e9=new ITHit.WebDAV.Client.Upload.Progress();_9e9.TotalBytes=this._Size;_9e9.UploadedBytes=this._BytesUploaded;_9e9.Speed=Math.floor((Math.round(_9e8*10)/10));_9e9.Completed=this._GetUploadedPercents();_9e9.ElapsedTime=Math.floor(this._ElapsedTime);if(_9e8){_9e9.RemainingTime=this._GetRemainingTime(_9e8);}return _9e9;},_GetSpeed:function(){if(!this.IsCountable()){return 0;}var _9ea=this._Diffs.slice(-1*this._DiffCount);var _9eb=0;var _9ec=0;for(var i=0,l=_9ea.length;i<l;i++){_9eb+=_9ea[i].BytesUploaded;_9ec+=_9ea[i].TimeUpload;}var _9ef=_9eb/_9ec;return (_9ef>0)?_9ef:0;},_GetUploadedPercents:function(){if(!this.IsCountable()){return this._IsCompleted?100:0;}return Math.floor((this._BytesUploaded)/(this._Size)*100);},_GetRemainingTime:function(_9f0){var _9f1=Math.ceil((this._Size-this._BytesUploaded)/_9f0);return Math.floor(_9f1);},_Notify:function(){var _9f2=new ITHit.WebDAV.Client.Upload.Events.ProgressChanged(this,this._OldProgress,this._CurrentProgress);ITHit.Events.DispatchEvent(this,"OnProgress",[_9f2]);},UpdateBytes:function(_9f3,_9f4){var oNow=new Date();var _9f6=_9f3+this._StartPosition-this._LastUploadedBytes;var _9f7=(oNow-this._LastReportTime)/1000;var _9f8=new ITHit.WebDAV.Client.Upload.Providers.UploadDiff(_9f6,_9f7);this._Diffs.push(_9f8);this._BytesUploaded=_9f3+this._StartPosition;this._LastUploadedBytes=_9f3+this._StartPosition;this._LastReportTime=oNow;this._ElapsedTime+=_9f7;this._OldProgress=this._CurrentProgress;this._CurrentProgress=this._CalculateProgress();this._Notify();},IsCountable:function(){return this._Size!==0;},_Set:function(_9f9,_9fa){var oNow=new Date();var _9fc=(oNow-this._LastReportTime)/1000;this.ResetSpeed();this._BytesUploaded=_9f9;this._LastUploadedBytes=0;this._LastReportTime=oNow;this._ElapsedTime+=_9fc;this._OldProgress=this._CurrentProgress;this._CurrentProgress=this._CalculateProgress();this._Notify();},OnProgressChanged:function(_9fd,_9fe){ITHit.Events.AddListener(this,"OnProgress",_9fd,_9fe);},IsCompleted:function(){return this._BytesUploaded===this._Size;},Reset:function(){this._StartPosition=0;this._BytesUploaded=0;this._OldProgress=this._CurrentProgress;this._CurrentProgress=this._CalculateProgress();this._Notify();},StartTracking:function(_9ff){_9ff=_9ff||this._CurrentProgress.UploadedBytes;this._StartPosition=_9ff;},StopTracking:function(){this.ResetSpeed();this._OldProgress=this._CurrentProgress;this._CurrentProgress.Speed=0;this._Notify();},SyncProgress:function(_a00){if(_a00.BytesUploaded<this._StartPosition){this.ResetSpeed();this._StartPosition=_a00.BytesUploaded;}this._Set(_a00.BytesUploaded,_a00.TotalContentLength);},ResetSpeed:function(_a01){this._LastReportTime=_a01||new Date();this._LastUploadedBytes=0;this._Diffs=[];},ResetIfComplete:function(){if(this.IsCompleted()){this.Reset();}},SetCompleted:function(){this.UpdateBytes(this._Size,this._Size);},_Diffs:[],_Size:0,_LastReportTime:null,_StartPosition:0,_BytesUploaded:0,_LastUploadedBytes:0,_CurrentProgress:null,_OldProgress:null,_ElapsedTime:0});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.AsyncEvent",null,{constructor:function(_a02,_a03){this.Sender=_a02;this._HandledCallback=_a03||ITHit.Utils.NoOp;this._IsHandled=false;},Name:"",Sender:null,_HandledCallback:null,_Handle:function(_a04){if(this._IsHandled){return;}this._IsHandled=true;this._HandledCallback(_a04);},GetIsHandled:function(){return this._IsHandled;},_IsHandled:false});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.BeforeUploadStarted",ITHit.WebDAV.Client.Upload.Events.AsyncEvent,{Skip:function(){if(this._IsHandled){return;}this.Sender.SetSkip();this._Handle();},Overwrite:function(){if(this._IsHandled){return;}if(!this.Sender.IsFolder()){this.Sender.SetOverwrite(true);}this._Handle();},SkipAll:function(){if(this._IsHandled){return;}var _a05=this.Sender.GetGroup();if(_a05){_a05.GetItems().forEach(function(_a06){_a06.SetSkip();});}else{this.Sender.SetSkip();}this._Handle();},OverwriteAll:function(){if(this._IsHandled){return;}var _a07=this.Sender.GetGroup();if(_a07){_a07.GetItems().forEach(function(_a08){_a08.SetOverwrite(true);});}else{this.Sender.SetOverwrite(true);}this._Handle();},Upload:function(){if(this._IsHandled){return;}this._Handle();},constructor:function(_a09,_a0a){this.Name=ITHit.WebDAV.Client.Upload.Events.EventName.OnBeforeUploadStarted;this._super(_a09,_a0a);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Path.PathCache",null,{constructor:function(){this._UrlMap=new ITHit.WebDAV.Client.Upload.Collections.Map();},Has:function(oUrl){return this._UrlMap.Has(oUrl.GetHref());},Add:function(oUrl){this._UrlMap.Set(oUrl.GetHref(),oUrl);},Delete:function(oUrl){this._UrlMap.Delete(oUrl.GetHref());},_UrlMap:null});})();(function(){"use strict";var _a0e=ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Groups.Group",null,{ID:0,IDString:"",constructor:function(_a0f,_a10){this._ItemGroupMap=_a0f;this._GroupItemMap=_a10;this.ID=++_a0e._GroupCounter;this.IDString=this.ID.toString();this.PathMap=new ITHit.WebDAV.Client.Upload.Path.PathCache();},AddRange:function(_a11){var _a12=this._GroupItemMap.Get(this.IDString);_a11.forEach(function(_a13){this._ItemGroupMap.Set(_a13.GetUrl(),this);_a12.push(_a13);}.bind(this));},GetItems:function(){return this._GroupItemMap.Get(this.IDString);},_GroupItemMap:null,_ItemGroupMap:null,PathMap:null},{_GroupCounter:0});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Groups.GroupManager",null,{constructor:function(){this._GroupItemMap=new ITHit.WebDAV.Client.Upload.Collections.Map();this._ItemGroupMap=new ITHit.WebDAV.Client.Upload.Collections.Map();},CreateGroup:function(_a14){_a14=_a14||[];var _a15=new ITHit.WebDAV.Client.Upload.Groups.Group(this._ItemGroupMap,this._GroupItemMap);this._GroupItemMap.Set(_a15.IDString,[]);_a15.AddRange(_a14);return _a15;},GetGroupByItem:function(_a16){return this._ItemGroupMap.Get(_a16.GetUrl());},_GroupItemMap:null,_ItemGroupMap:null});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Utils.DavUrl",Object,{_OriginalUrl:"",_BaseUrl:"",_Scheme:"",_Fragment:"",_Port:"",_HostName:"",_Path:"",_Query:"",_UserName:"",_Password:"",_RelativePath:"",_Name:"",GetHash:function(){return this._Fragment;},GetHost:function(){if(this._Port){return this._HostName+this._PortSeparator+this._Port;}return this._HostName;},GetOrigin:function(){return this.GetProtocol()+this.GetHost();},GetHostName:function(){return this._HostName;},GetPort:function(){return this._Port;},GetProtocol:function(){return this._Scheme;},GetQuery:function(){return this._Query;},GetName:function(){return this._Name;},GetRelativePath:function(){return this._RelativePath;},GetHref:function(){return this._OriginalUrl;},GetBaseUrl:function(){return this._BaseUrl;},toString:function(){return this._OriginalUrl;},Clone:function(){return new ITHit.WebDAV.Client.Upload.Utils.DavUrl(this._RelativePath,this._BaseUrl);},_ParseAuthPartsUndetectedScheme:function(_a17){var _a18=_a17.split(":");if(_a18.length===3){this._Scheme=_a18[0]+":";this._UserName=_a18[1];this._Password=_a18[2];}else{if(_a18.length===2){this._Scheme=_a18[0];this._UserName=_a18[1];}else{this._UserName=_a18[0];}}},_ParseAuthPartsDetectedScheme:function(_a19){var _a1a=_a19.split(":");if(_a1a.length===2){this._UserName=_a1a[0];this._Password=_a1a[1];}else{this._UserName=_a1a[0];}},ParseAuthorityWithScheme:function(_a1b,_a1c){var _a1d=_a1b.match(this._PortRexEx);if(_a1d){this._Port=_a1d[0].slice(1);_a1b=_a1b.slice(0,-_a1d[0].length);}var _a1e=_a1b.split("@");if(_a1e.length>1){this._HostName=_a1e[1];if(!_a1c){this._ParseAuthPartsUndetectedScheme(_a1e[0]);}else{this._ParseAuthPartsDetectedScheme(_a1e[0]);}return;}var _a1f=_a1e[0].split(":");if(_a1f.length>1){this._Scheme=_a1f[0]+":";this._HostName=_a1f[1];return;}this._HostName=_a1b;},_ParseTrailingPathPart:function(_a20){var _a21=_a20.split(this._FragmentSeparator);if(_a21.length>1){this._Fragment=this._FragmentSeparator+_a21[1];}var _a22=_a21[0].split("?");if(_a22.length>1){this._Query=_a22[1];return _a22[0];}return _a22[0];},_ParseUrl:function(sUrl){var _a24=sUrl.split(this._DashedSchemeSeparator);if(_a24.length>1){this._Scheme=_a24[0]+this._DashedSchemeSeparator;this._IsDashedScheme=true;_a24.splice(0,1);}var _a25=_a24[0].split(this._PathSeparator);_a25=ITHit.Utils.FilterBy(_a25,function(_a26){return _a26!=="";});this.ParseAuthorityWithScheme(_a25[0],this._IsDashedScheme);_a25.splice(0,1);if(_a25.length===0){return;}var _a27=[];for(var i=0;i<_a24.length-1;i++){_a27.push(_a25[i]);}var _a29=this._ParseTrailingPathPart(_a25[_a25.length-1]);_a27.push(_a29);this._Name=_a29;this._Path=this._PathSeparator+_a27.join(this._PathSeparator);this._RelativePath=this._RelativePath||this._Path;},constructor:function(sUrl,_a2b){this._BaseUrl=_a2b||"";this._OriginalUrl=sUrl;if(!!_a2b){this._RelativePath=this._PathSeparator+this._GetWithoutLeadingSeparator(sUrl);this._OriginalUrl=this._GetWithoutTrailingSeparator(_a2b)+this._RelativePath;}this._ParseUrl(this._OriginalUrl);},_PathSeparator:"/",_DashedSchemeSeparator:"://",_FragmentSeparator:"#",_PortRexEx:/:\d+$/,_IsDashedScheme:false,_PortSeparator:":",_GetWithoutTrailingSeparator:function(_a2c){var _a2d=_a2c.slice(-1);if(_a2d===this._PathSeparator){return _a2c.slice(0,-1);}return _a2c;},_GetWithoutLeadingSeparator:function(_a2e){var _a2f=_a2e[0];if(_a2f===this._PathSeparator){return _a2e.substring(1);}return _a2e;}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.UploadItem",null,{GetFile:function(){return this._UploadProvider.FSEntry.GetFile();},GetUrl:function(){return this._UploadProvider.Url.GetHref();},GetBaseUrl:function(){return this._UploadProvider.Url.GetBaseUrl();},GetName:function(){return this._UploadProvider.Url.GetName();},GetRelativePath:function(){return this._UploadProvider.Url.GetRelativePath();},IsFolder:function(){return this._UploadProvider.FSEntry.IsFolder();},GetSource:function(){return this._Source;},GetState:function(){return this._UploadProvider.GetState().GetAsEnum();},GetProgress:function(){return this._UploadProvider.GetProgress();},GetErrors:function(){return this._UploadProvider.Errors.slice();},GetLastError:function(){return this._UploadProvider.LastError;},OnUploadStartedCallback:null,OnUploadErrorCallback:null,CustomData:null,SetOverwrite:function(_a30){this._UploadProvider.Settings.ForceRewrite=_a30;},AddHeader:function(_a31,_a32){this._UploadProvider.Settings.CustomHeaders=this._UploadProvider.Settings.CustomHeaders||[];var _a33=ITHit.Utils.FindBy(this._UploadProvider.Settings.CustomHeaders,function(_a34){return _a34.name===_a31;});if(_a33){_a33.value=_a32;}else{this._UploadProvider.Settings.CustomHeaders.push({name:_a31,value:_a32});}},SetRewrite:function(_a35){this.SetOverwrite(_a35);},GetOverwrite:function(){return this._UploadProvider.Settings.ForceRewrite;},GetRewrite:function(){return this.GetOverwrite();},SetDeleteOnCancel:function(_a36){if(this.IsFolder()&&_a36===true){throw new ITHit.Exceptions.ArgumentException(null,"bDelete");}this._UploadProvider.Settings.DeleteOnCancel=_a36;},GetDeleteOnCancel:function(){return this._UploadProvider.Settings.DeleteOnCancel;},SetSkip:function(){this._UploadProvider.Skip();},SetFailed:function(_a37){if(!(_a37 instanceof ITHit.WebDAV.Client.Exceptions.WebDavException)){var _a38=ITHit.Phrases.WrongParameterType.Paste("ITHit.WebDAV.Client.Exceptions.WebDavException");throw new ITHit.Exceptions.ArgumentException(_a38,"oError");}this._UploadProvider.SetFailed(_a37);},_SetProgress:function(_a39){var _a3a=new ITHit.WebDAV.Client.Upload.Events.ProgressChanged(this,_a39.OldProgress,_a39.NewProgress);ITHit.Events.DispatchEvent(this,_a3a.Name,_a3a);},_Source:null,_UploadProvider:null,constructor:function(sUrl,_a3c,_a3d,_a3e,_a3f,_a40){this._Source=_a3d||null;this._GroupManager=_a3f;var _a41=new ITHit.WebDAV.Client.Upload.Utils.DavUrl(ITHit.WebDAV.Client.Encoder.Encode(_a3c.GetRelativePath()),sUrl);this._UploadProvider=new ITHit.WebDAV.Client.Upload.Providers.UploadProvider(_a3e,this,_a3c,_a41,_a40);this._UploadProvider.AddListener("OnProgressChanged",this._SetProgress,this);this._UploadProvider.AddListener("OnStateChanged",this._OnStateChangedEventHandler,this);this._UploadProvider.AddListener("OnError",this._OnErrorEventHandler,this);this.CustomData={};},StartAsync:function(_a42){_a42=_a42||function(){};if(this.GetState()!==ITHit.WebDAV.Client.Upload.State.Paused){var that=this;this._GetUploadBehaviourAsync(function(){if(that.GetState()===ITHit.WebDAV.Client.Upload.State.Skipped){_a42();}else{that._UploadProvider.StartUploadAsync(_a42);}});}else{this._UploadProvider.StartUploadAsync(_a42);}},PauseAsync:function(_a44){_a44=_a44||function(){};this._UploadProvider.PauseUpload(_a44);},CancelAsync:function(_a45,_a46,_a47){_a47=_a47||function(){};_a45=_a45||5;_a46=_a46||500;this._UploadProvider.AbortUpload(_a45,_a46,_a47);},GetSize:function(){return this._UploadProvider.FSEntry.GetSize();},_GetUploadBehaviourAsync:function(_a48){var _a49=new ITHit.WebDAV.Client.Upload.Events.BeforeUploadStarted(this,_a48);if(this.OnUploadStartedCallback){this.OnUploadStartedCallback(_a49);}else{if(ITHit.Events.ListenersLength(this,_a49.Name)!==0){ITHit.Events.DispatchEvent(this,_a49.Name,_a49);}else{_a48();}}},AddListener:function(_a4a,_a4b,_a4c){this._ValidateEventName(_a4a);_a4c=_a4c||null;ITHit.Events.AddListener(this,_a4a,_a4b,_a4c);},RemoveListener:function(_a4d,_a4e,_a4f){this._ValidateEventName(_a4d);_a4f=_a4f||null;ITHit.Events.RemoveListener(this,_a4d,_a4e,_a4f);},_ValidateEventName:function(_a50){switch(_a50){case ITHit.WebDAV.Client.Upload.Events.EventName.OnStateChanged:case ITHit.WebDAV.Client.Upload.Events.EventName.OnProgressChanged:case ITHit.WebDAV.Client.Upload.Events.EventName.OnError:case ITHit.WebDAV.Client.Upload.Events.EventName.OnBeforeUploadStarted:case ITHit.WebDAV.Client.Upload.Events.EventName.OnUploadError:break;default:throw new ITHit.Exceptions.ArgumentException("Not found event name `"+_a50+"`");}},GetGroup:function(){return this._GroupManager.GetGroupByItem(this);},_GroupManager:null,_OnStateChangedEventHandler:function(_a51){var _a52=new ITHit.WebDAV.Client.Upload.Events.StateChanged(this,_a51.OldState,_a51.NewState);ITHit.Events.DispatchEvent(this,_a52.Name,_a52);},_OnErrorEventHandler:function(_a53){var _a54=new ITHit.WebDAV.Client.Upload.Events.Error(this,_a53.Error);ITHit.Events.DispatchEvent(this,_a54.Name,_a54);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.QueueChanged",ITHit.WebDAV.Client.Upload.Events.BaseEvent,{AddedItems:[],RemovedItems:[],constructor:function(_a55,_a56,_a57){this.Name=ITHit.WebDAV.Client.Upload.Events.EventName.OnQueueChanged;this.AddedItems=_a56||[];this.RemovedItems=_a57||[];this.Sender=_a55;}});})();(function(){ITHit.DefineClass("ITHit.WebDAV.Client.Upload.FileSpan",null,{GetStart:function(){return this._Start;},SetStart:function(_a58){if(this._End&&_a58>this._End){throw new ITHit.Exceptions.ArgumentException("Start cant be bigger than end","iStart");}this._Start=_a58;},GetEnd:function(){return this._End;},SetEnd:function(iEnd){if(iEnd<this._Start){throw new ITHit.Exceptions.ArgumentException("End cant be smaller than start","iEnd");}this._End=iEnd||this._Blob.size;},_Start:0,_End:0,_Blob:null,constructor:function(_a5a,_a5b,iEnd){this._SetBlob(_a5a);this.SetStart(_a5b);this.SetEnd(iEnd||_a5a.size);},_SetBlob:function(_a5d){this._Blob=_a5d;this._Start=0;this._End=_a5d.size;},IsFullFile:function(){return this._Start===0&&this._End===this._Blob.size;},IsPartFile:function(){return !this.IsFullFile();},GetSlice:function(){if(this.IsFullFile()){return this._Blob;}return this._Blob.slice(this._Start,this.End);},GetFile:function(){return this._Blob;},GetFullSize:function(){return this._Blob.size;}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.UploadLocation",null,{constructor:function(_a5e,oUrl){this._FolderGenerator=_a5e;this._Url=oUrl;this._PathMap=new ITHit.WebDAV.Client.Upload.Path.PathCache();},CreateAsync:function(_a60,_a61){var _a62=function(_a63){delete this._CancellationCallback;_a60.call(_a61,_a63);};this._CancellationCallback=this._FolderGenerator.GeneratePathAsync(this._PathMap,this._Url,_a62,this);},IsExists:function(){return this._PathMap.Has(this._Url);},SetNotExists:function(){var _a64=this._GetAncestorsPaths(this._Url);_a64.forEach(function(oUrl){this._PathMap.Delete(oUrl);},this);},IsInProgress:function(){return !!this._CancellationCallback;},AbortRunningCreationAsync:function(_a66,_a67){if(!this._CancellationCallback){_a66.call(_a67);return;}this._CancellationCallback(function(){_a66.call(_a67);},this);},GetCache:function(){return this._PathMap;},SetCache:function(_a68){this._PathMap=_a68;},_CancellationCallback:null,_FolderGenerator:null,_PathMap:null,_Url:null,_GetAncestorsPaths:function(oUrl){var _a6a=oUrl.GetRelativePath().split("/");if(_a6a.length===0){return [];}if(_a6a[_a6a.length-1]===""){_a6a=_a6a.slice(0,-1);}var _a6b=[];var path="";for(var i=0;i<_a6a.length-1;i++){if(path!==""){path+="/";}path+=_a6a[i];_a6b.push(new ITHit.WebDAV.Client.Upload.Utils.DavUrl(path,oUrl.GetBaseUrl()));}return _a6b;}});})();(function(){"use strict";var self=ITHit.DefineClass("ITHit.WebDAV.Client.Upload.ContentWriter",null,{Url:null,constructor:function(_a6f,oUrl){this._Session=_a6f;this.Url=oUrl;},SetProgressDebounce:function(_a71){this._ReportPeriod=_a71;},BeginWrite:function(_a72){this._InitializeRequestContext();var _a73=null;if(_a72.IsFolder()){_a73=this._CreateMKCOLRequest();this._AddCustomHeaders(_a73);this._RequestContext.AddListener("OnError",this._OnErrorEventHandler,this);_a73.GetResponse(this._OnResponse.bind(this));this._RaiseOnStartEvent();return;}_a73=this._CreatePutRequest(_a72);_a73.Headers.Add("Overwrite","F");this._AddCustomHeaders(_a73);this._RequestContext.AddListener("OnError",this._OnErrorEventHandler,this);_a73.GetResponse(this._OnResponse.bind(this));this._RaiseOnStartEvent();},BeginRewrite:function(_a74){this._InitializeRequestContext();var _a75=null;if(_a74.IsFolder()){_a75=this._CreateMKCOLRequest();this._AddCustomHeaders(_a75);this._RequestContext.AddListener("OnError",this._OnMKCOLRewriteErrorEventHandler,this);_a75.GetResponse(this._OnMKCOLRewriteResponse.bind(this));this._RaiseOnStartEvent();}else{_a75=this._CreatePutRequest(_a74);_a75.Headers.Add("Overwrite","T");this._AddCustomHeaders(_a75);this._RequestContext.AddListener("OnError",this._OnErrorEventHandler,this);_a75.GetResponse(this._OnResponse.bind(this));this._RaiseOnStartEvent();}},BeginAppend:function(_a76){this._InitializeRequestContext();var _a77=this._CreatePutAppendRequest(_a76);_a77.Headers.Add("Overwrite","T");this._AddCustomHeaders(_a77);this._RequestContext.AddListener("OnError",this._OnErrorEventHandler,this);_a77.GetResponse(this._OnResponse.bind(this));this._RaiseOnStartEvent();},AbortAsync:function(_a78,_a79){if(this._RequestContext){this._RequestContext.RemoveListener(ITHit.WebDAV.Client.Request.EVENT_ON_UPLOAD_PROGRESS,this._OnProgressEventHandler,this);this._RequestContext.AbortAsync(_a78,_a79);}},AddListener:function(_a7a,_a7b,_a7c){_a7c=_a7c||null;this._ValidateEventName(_a7a);ITHit.Events.AddListener(this,_a7a,_a7b,_a7c);},RemoveListener:function(_a7d,_a7e,_a7f){_a7f=_a7f||null;this._ValidateEventName(_a7d);ITHit.Events.RemoveListener(this,_a7d,_a7e,_a7f);},_AddCustomHeaders:function(_a80){if(!this.CustomHeaders){return;}var _a81=[];var _a82=_a80.Headers.GetAll();this.CustomHeaders.forEach(function(_a83){if(_a81.indexOf(_a83.name)<0&&!_a82.hasOwnProperty(_a83.name)){_a80.Headers.Add(_a83.name,_a83.value);_a81.push(_a83.name);}});},_ValidateEventName:function(_a84){switch(_a84){case self.EVENT_ON_PROGRESS:case self.EVENT_ON_ERROR:case self.EVENT_ON_FINISH:case self.EVENT_ON_START:break;default:throw new ITHit.Exceptions.ArgumentException("Not found event name `"+_a84+"`");}},_InitializeRequestContext:function(){if(this.IsActive()){throw new ITHit.Exceptions("Content write already in progress");}this._RequestContext=this._Session.CreateRequest(this.__className);this._RequestContext.AddListener(ITHit.WebDAV.Client.Request.EVENT_ON_UPLOAD_PROGRESS,this._OnProgressEventHandler,this);},_CreateMKCOLRequest:function(){var _a85=this._RequestContext.CreateWebDavRequest(ITHit.WebDAV.Client.Encoder.Encode(this.Url.GetOrigin()),this.Url.GetHref());_a85.Method("MKCOL");this._SetDefaultHeaders(_a85);return _a85;},_OnMKCOLRewriteResponse:function(_a86){if(this._IsConflictResult(_a86)){_a86=this._TransformToSuccess(_a86);}this._OnResponse(_a86);},_OnMKCOLRewriteErrorEventHandler:function(_a87){if(_a87.Error instanceof ITHit.WebDAV.Client.Exceptions.MethodNotAllowedException){return;}},_OnResponse:function(_a88){if(_a88.IsAborted){_a88=ITHit.WebDAV.Client.CancellableResult.CreateAbortedResult(_a88.Error);this._RequestContext.MarkAbort();}else{_a88=ITHit.WebDAV.Client.CancellableResult.CreateFromAsyncResultResult(_a88);this._RequestContext.MarkFinish();}this._RaiseOnFinishEvent(_a88);this._RemoveRequestContextEventListeners();},_CreatePutRequest:function(_a89){var _a8a=this._RequestContext.CreateWebDavRequest(ITHit.WebDAV.Client.Encoder.Encode(this.Url.GetOrigin()),this.Url.GetHref());_a8a.Method("PUT");if(_a89.GetFile().type){_a8a.Headers.Add("Content-Type",_a89.GetFile().type);}_a8a.BodyBinary(_a89.GetFile());this._SetDefaultHeaders(_a8a);return _a8a;},_CreatePutAppendRequest:function(_a8b){var _a8c=this._RequestContext.CreateWebDavRequest(ITHit.WebDAV.Client.Encoder.Encode(this.Url.GetOrigin()),this.Url.GetHref());_a8c.Method("PUT");if(_a8b.GetFile().type){_a8c.Headers.Add("Content-Type",_a8b.GetFile().type);}if(_a8b.IsPartFile()){_a8c.Headers.Add("Content-Range",this._GetRangeHeader(_a8b));_a8c.BodyBinary(_a8b.GetSlice());}else{_a8c.BodyBinary(_a8b.GetFile());}this._SetDefaultHeaders(_a8c);return _a8c;},_GetRangeHeader:function(_a8d){return "bytes "+_a8d.GetStart()+"-"+(_a8d.GetEnd()-1)+"/"+_a8d.GetFullSize();},_TransformToSuccess:function(_a8e){return new ITHit.WebDAV.Client.AsyncResult(_a8e.Error,true,null);},_IsConflictResult:function(_a8f){return _a8f.Error instanceof ITHit.WebDAV.Client.Exceptions.MethodNotAllowedException;},_RaiseOnProgressEvent:function(_a90){ITHit.Events.DispatchEvent(this,self.EVENT_ON_PROGRESS,[{Progress:_a90,Uploader:this}]);},_RaiseOnErrorEvent:function(_a91){ITHit.Events.DispatchEvent(this,self.EVENT_ON_ERROR,[{Error:_a91,Uploader:this}]);},_RaiseOnFinishEvent:function(_a92){ITHit.Events.DispatchEvent(this,self.EVENT_ON_FINISH,[{Uploader:this,Result:_a92}]);},_RaiseOnStartEvent:function(){ITHit.Events.DispatchEvent(this,self.EVENT_ON_START,[{Uploader:this}]);},_OnProgressEventHandler:function(_a93){var iNow=new Date().getTime();if(iNow-this._LastReportTime>this._ReportPeriod||_a93.Progress.BytesTotal===_a93.Progress.BytesLoaded){this._RaiseOnProgressEvent(_a93.Progress);this._LastReportTime=iNow;}},_OnErrorEventHandler:function(_a95){this._RaiseOnErrorEvent(_a95.Error);},_RemoveRequestContextEventListeners:function(){ITHit.Events.RemoveAllListeners(this._RequestContext,"OnUploadProgress");ITHit.Events.RemoveAllListeners(this._RequestContext,"OnError");delete this._RequestContext;},_SetDefaultHeaders:function(_a96){_a96.Headers.Add("If-Modified-Since","Mon, 26 Jul 1997 05:00:00 GMT");_a96.Headers.Add("X-Requested-With","XMLHttpRequest");},IsActive:function(){return !!this._RequestContext;},_Session:null,_RequestContext:null,_ReportPeriod:1000,_LastReportTime:0},{EVENT_ON_PROGRESS:"OnProgress",EVENT_ON_ERROR:"OnError",EVENT_ON_FINISH:"OnFinish",EVENT_ON_START:"OnStart"});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Path.Generator",null,{constructor:function(_a97){this._Session=_a97;this._WorkList=new ITHit.WebDAV.Client.Upload.Collections.Map();},_SendRequest:function(oUrl){var _a99=this._Session.CreateRequest(this.__className+".GeneratePathAsync()");ITHit.WebDAV.Client.Methods.Mkcol.GoAsync(_a99,oUrl.toString(),[],ITHit.WebDAV.Client.Encoder.Encode(oUrl.GetHost()),function(_a9a){if(_a9a.IsAborted){_a99.MarkAbort();}else{_a99.MarkFinish();}this._CallAwaiters(oUrl,_a9a);}.bind(this));return _a99;},_RecurrentGenerate:function(_a9b,_a9c,_a9d,_a9e){var _a9f=null;var _aa0=null;var _aa1=function(_aa2,_aa3){if(!!_a9f){_a9f.AbortAsync(_aa2,_aa3);return;}if(!!_aa0){_aa0(_aa2,_aa3);}_aa2.call(_a9e);};var _aa4=_a9c.slice();var _aa5=[];while(_aa4.length>0){var oUrl=_aa4[0];if(!_a9b.Has(oUrl)){break;}_aa5.push(oUrl);_aa4.splice(0,1);}if(_aa4.length===0){_a9d.call(_a9e,ITHit.WebDAV.Client.CancellableResult.CreateSuccessfulResult(_aa5));return _aa1;}var _aa7=_aa4.shift();if(!this._IsInWork(_aa7)){_a9f=this._SendRequest(_aa7);}this._AddAwaiter(_aa7,function(_aa8){if(!_aa8.IsSuccess&&!this._IsConflictResult(_aa8)){_a9d.call(_a9e,_aa8);return;}_a9b.Add(_aa7);_aa5.push(oUrl);_a9f=null;_aa0=this._RecurrentGenerate(_a9b,_aa4,function(_aa9){if(_aa9.IsSuccess||this._IsConflictResult(_aa8)){_aa9.Result.concat(_aa5);_aa9=ITHit.WebDAV.Client.CancellableResult.CreateSuccessfulResult(_aa5);}_aa0=null;_a9d.call(_a9e,_aa9);return;},this);}.bind(this));return _aa1;},GeneratePathAsync:function(_aaa,oUrl,_aac,_aad){var _aae=this._GetAncestorsPaths(oUrl);if(_aae.length===0){return _aac.call(_aad,ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult([]));}return this._RecurrentGenerate(_aaa,_aae,_aac,_aad);},_Session:null,_WorkList:null,_GetAncestorsPaths:function(oUrl){var _ab0=oUrl.GetRelativePath().split("/");if(_ab0.length===0){return [];}if(_ab0[_ab0.length-1]===""){_ab0=_ab0.slice(0,-1);}var _ab1=[];var path="";for(var i=0;i<_ab0.length-1;i++){if(path!==""){path+="/";}path+=_ab0[i];_ab1.push(new ITHit.WebDAV.Client.Upload.Utils.DavUrl(path,oUrl.GetBaseUrl()));}return _ab1;},_IsInWork:function(oUrl){var _ab5=this._WorkList.Get(oUrl.toString());return _ab5&&(_ab5.length>0);},_AddAwaiter:function(oUrl,_ab7){var _ab8=this._WorkList.Get(oUrl.toString());var _ab9=[];if(_ab8){_ab9=_ab9.concat(_ab8);}_ab9.push(_ab7);this._WorkList.Set(oUrl.toString(),_ab9);},_CallAwaiters:function(oUrl,_abb){var _abc=this._WorkList.Get(oUrl.toString());this._WorkList.Delete(oUrl.toString());_abc.forEach(function(_abd){_abd(_abb);});},_IsConflictResult:function(_abe){if(_abe.IsSuccess){return false;}if(_abe.Error&&_abe.Error instanceof ITHit.WebDAV.Client.Exceptions.MethodNotAllowedException){return true;}return false;}});})();(function(){ITHit.DefineClass("ITHit.WebDAV.Client.Upload.UploaderSession",ITHit.WebDAV.Client.WebDavSession,{ExistsFolders:[],GetProgressReportAsync:function(sUrl,_ac0,_ac1){var _ac2=this.CreateRequest(this.__className+".ReportAsync()");var _ac3=ITHit.WebDAV.Client.HierarchyItem.GetHost(sUrl);ITHit.WebDAV.Client.Methods.Report.GoAsync(_ac2,sUrl,_ac3,null,null,function(_ac4){_ac2.MarkFinish();_ac0.call(_ac1,_ac4);});return _ac2;},CancelUploadAsync:function(sUrl,_ac6){var _ac7=this.CreateRequest(this.__className+".CancelUpload()");var _ac8=ITHit.WebDAV.Client.HierarchyItem.GetHost(sUrl);ITHit.WebDAV.Client.Methods.CancelUpload.GoAsync(_ac7,sUrl,[],_ac8,function(_ac9){_ac7.MarkFinish();var _aca=new ITHit.WebDAV.Client.AsyncResult(true,true,null);if(_ac9.Error instanceof ITHit.WebDAV.Client.Exceptions.NotFoundException){_aca=new ITHit.WebDAV.Client.AsyncResult(true,true,null);}else{if(!_ac9.IsSuccess){_aca=new ITHit.WebDAV.Client.AsyncResult(_ac9.IsSuccess,_ac9.IsSuccess,_ac9.Error);}}_ac6(_aca);});return _ac7;},CheckExistsAsync:function(sUrl,_acc,_acd){_acc=_acc||function(){};return this.OpenItemAsync(ITHit.WebDAV.Client.Encoder.Encode(sUrl),[],function(_ace){var _acf=new ITHit.WebDAV.Client.AsyncResult(true,true,null);if(_ace.Error instanceof ITHit.WebDAV.Client.Exceptions.NotFoundException){_acf=new ITHit.WebDAV.Client.AsyncResult(false,true,null);}else{if(!_ace.IsSuccess){_acf=new ITHit.WebDAV.Client.AsyncResult(_ace.IsSuccess,_ace.IsSuccess,_ace.Error);}}_acc.call(_acd,_acf);});},DeleteAsync:function(_ad0,_ad1,_ad2){_ad1=_ad1||null;var _ad3=ITHit.WebDAV.Client.HierarchyItem.GetHost(_ad0);var _ad4=this.CreateRequest(this.__className+".DeleteAsync()");ITHit.WebDAV.Client.Methods.Delete.GoAsync(_ad4,_ad0,_ad1,_ad3,function(_ad5){if(!_ad5.IsSuccess&&_ad5.Error instanceof ITHit.WebDAV.Client.Exceptions.NotFoundException){_ad5=new ITHit.WebDAV.Client.AsyncResult(true,true,null);}_ad4.MarkFinish();_ad2(_ad5);});return _ad4;},CreateFolderRangeAsync:function(_ad6,_ad7,_ad8,_ad9){_ad7=_ad7||null;_ad8=_ad8||ITHit.Utils.NoOp;var _ada=_ad6.length;var _adb=this.CreateRequest(this.__className+".CreateFolderRangeAsync()",_ada);this._PerformCreateFolderRangeMethodAsync(_adb,_ad6,_ad7,function(_adc){_adb.MarkFinish();_ad8.call(_ad9,_adc);});return _adb;},_PerformCreateFolderRangeMethodAsync:function(_add,_ade,_adf,_ae0,_ae1){_ae0=_ae0||ITHit.Utils.NoOp;_ade=_ade.slice();var _ae2=_ade.unshift();var _ae3=ITHit.WebDAV.Client.Encoder.Encode(_ae2.GetHref());var _ae4=ITHit.WebDAV.Client.Encoder.Encode(_ae2.GetHost());ITHit.WebDAV.Client.Methods.Mkcol.GoAsync(_add,_ae3,_adf,_ae4,function(_ae5){if(_ae5.IsSuccess||_ae5.Error instanceof ITHit.WebDAV.Client.Exceptions.MethodNotAllowedException){_ae5=new ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult([_ae2]);}if(_ade.length>0&&_ae5.IsSuccess){this._PerformCreateFolderRangeMethodAsync(_add,_ade,_adf,function(_ae6){if(_ae6.IsSuccess){_ae6.Result.push(_ae2);}_ae0.call(_ae1,_ae6);return;},this);}else{_ae0.call(_ae1,_ae5);return;}});},CreateUploadLocation:function(oUrl){return new ITHit.WebDAV.Client.Upload.UploadLocation(this.GetPathGenerator(),oUrl);},CreateContentWriter:function(oUrl){return new ITHit.WebDAV.Client.Upload.ContentWriter(this,oUrl);},GetPathGenerator:function(){if(!this._PathGenerator){this._PathGenerator=new ITHit.WebDAV.Client.Upload.Path.Generator(this);}return this._PathGenerator;},_PathGenerator:null});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Utils.RepeatableActionContext",null,{_RoundsCount:0,_IsActive:true,_Handler:null,_EndHandler:null,_RepeatTime:0,constructor:function(_ae9,_aea,_aeb,_aec){this._RoundsCount=_ae9;this._Handler=_aeb;this._EndHandler=_aec;this._IsActive=!!_ae9;this._RepeatTime=_aea;},Stop:function(_aed){this._IsActive=false;this._RoundsCount=0;this._EndHandler(_aed);},_RunRound:function(){if(this._IsActive){this._Handler(this);}else{this.Stop();}},EndRound:function(_aee){this._RoundsCount--;if(this._RoundsCount===0){this.Stop(_aee);}else{setTimeout(this._RunRound.bind(this),this._RepeatTime);}}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Utils.RepeatableAction",null,{_Action:null,constructor:function(_aef){this._Action=_aef;},RunAsync:function(_af0,_af1,_af2){var _af3=new ITHit.WebDAV.Client.Upload.Utils.RepeatableActionContext(_af0,_af1,this._Action,_af2);_af3._RunRound();}});})();(function(){"use strict";var self=ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.UploadError",ITHit.WebDAV.Client.Upload.Events.AsyncEvent,{Error:null,Skip:function(){if(this._IsHandled){return;}this._SkipRetry(this.Items);},Retry:function(){if(this._IsHandled){return;}this._Retry(this.Items);},constructor:function(_af5,_af6,_af7){this.Name=ITHit.WebDAV.Client.Upload.Events.EventName.OnUploadError;this.Error=_af6;this._super(_af5,_af7);},_Retry:function(){this._Handle(self.GetRetryResult(this.Error));},_SkipRetry:function(){this._Handle(self.GetSkipResult(this.Error));}},{GetSkipResult:function(_af8){return {Action:"skip",Error:_af8};},GetRetryResult:function(_af9){return {Action:"retry",Error:_af9};}});})();(function(){ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.Error",ITHit.WebDAV.Client.Upload.Events.BaseEvent,{Error:null,constructor:function(_afa,_afb){this.Name=ITHit.WebDAV.Client.Upload.Events.EventName.OnError;this.Error=_afb;this.Sender=_afa;}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.States.BaseState",null,{OnEnter:function(_afc){},OnLeave:function(_afd){},StartUploadAsync:function(_afe,_aff){_aff();},PauseUpload:function(_b00,_b01){_b01();},AbortUpload:function(_b02,_b03,_b04,_b05){_b05();},Skip:function(_b06){},OnUploadLocationPrepared:function(_b07,_b08){},OnUploadProgressPrepared:function(_b09,_b0a){},OnContentCompleted:function(_b0b,_b0c){},OnRetryResult:function(_b0d,_b0e){},_CompletePauseAsync:function(_b0f,_b10,_b11){if(_b0f.IsRetrySchedule){_b0f.IsRetrySchedule=false;}_b0f.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetPausedState());_b10.call(_b11);},_StartPauseAsync:function(_b12,_b13){_b12._ProgressTracker.StopTracking();_b12.CancelAllRequests(function(){if(_b12.IsContentSend){_b12.SyncProgressWithServerAsync(function(_b14){this._CompletePauseAsync(_b12,_b13);},this);return;}this._CompletePauseAsync(_b12,_b13);},this);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.States.CompletedState",ITHit.WebDAV.Client.Upload.States.BaseState,{GetAsEnum:function(){return ITHit.WebDAV.Client.Upload.State.Completed;},OnEnter:function(_b15){_b15.GetProgressTracker().StopTracking();_b15.GetProgressTracker().SetCompleted();},StartUploadAsync:function(_b16,_b17){_b16.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetUploadingState());this._super(_b16,_b17);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.States.SkippedState",ITHit.WebDAV.Client.Upload.States.BaseState,{GetAsEnum:function(){return ITHit.WebDAV.Client.Upload.State.Skipped;},StartUploadAsync:function(_b18,_b19){_b18.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetUploadingState());this._super(_b18,_b19);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.States.QueuedState",ITHit.WebDAV.Client.Upload.States.BaseState,{GetAsEnum:function(){return ITHit.WebDAV.Client.Upload.State.Queued;},StartUploadAsync:function(_b1a,_b1b){_b1a.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetUploadingState());this._super(_b1a,_b1b);},Skip:function(_b1c){_b1c.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetSkippedState());},PauseUpload:function(_b1d,_b1e){this._StartPauseAsync(_b1d,_b1e);},AbortUpload:function(_b1f,_b20,_b21,_b22){_b1f.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetCanceledState());this._super(_b1f,_b20,_b21,_b22);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.States.CanceledState",ITHit.WebDAV.Client.Upload.States.BaseState,{GetAsEnum:function(){return ITHit.WebDAV.Client.Upload.State.Canceled;},OnEnter:function(_b23){_b23.GetProgressTracker().StopTracking();_b23.GetProgressTracker().Reset();},StartUploadAsync:function(_b24,_b25){_b24.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetUploadingState());this._super(_b24,_b25);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.States.UploadingState",ITHit.WebDAV.Client.Upload.States.BaseState,{GetAsEnum:function(){return ITHit.WebDAV.Client.Upload.State.Uploading;},OnEnter:function(_b26){_b26.PrepareUploadLocation();},PauseUpload:function(_b27,_b28){this._StartPauseAsync(_b27,_b28);},AbortUpload:function(_b29,_b2a,_b2b,_b2c){_b29.CancelAllRequests(function(){_b29.GetProgressTracker().StopTracking();_b29.CancelAndDeleteAsync(_b2a,_b2b,function(_b2d){if(_b2d.IsSuccess){_b29.GetProgressTracker().Reset();_b29.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetCanceledState());}else{_b29.AddError(_b2d.Error);_b29.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetFailedState());}_b2c();},this);},this);},OnContentCompleted:function(_b2e,_b2f){var _b30=_b2f.Result;if(_b30.IsAborted){return;}if(_b30.IsSuccess){_b2e.GetProgressTracker().SetCompleted();_b2e.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetCompletedState());return;}this._HandleError(_b2e,_b30);},_HandleError:function(_b31,_b32){_b31.AddError(_b32.Error);_b31.BeginRetry(_b32.Error);},OnRetryResult:function(_b33,_b34){if(_b34.Action==="skip"){_b33.AddError(_b34.Error);_b33.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetFailedState());return;}if(_b33.IsContentSend){_b33.SyncProgressWithServerAsync(function(_b35){if(_b35.Error){this._HandleError(_b34.Error);}else{this.OnEnter(_b33);}},this);return;}this.OnEnter(_b33);},OnUploadLocationPrepared:function(_b36,_b37){if(_b37.IsAborted){return;}if(!_b37.IsSuccess){this._HandleError(_b36,_b37);return;}_b36._SendContent();}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.States.ResumeState",ITHit.WebDAV.Client.Upload.States.UploadingState,{OnEnter:function(_b38){if(_b38.IsContentSend){_b38.PrepareProgress();return;}this._super(_b38);},OnUploadProgressPrepared:function(_b39,_b3a){if(_b3a.IsAborted){return;}if(!_b3a.IsSuccess){this._HandleError(_b39,_b3a);return;}if(_b39.GetProgressTracker().IsCompleted()){_b39.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetCompletedState());}_b39._SendContent();}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.States.PausedState",ITHit.WebDAV.Client.Upload.States.BaseState,{GetAsEnum:function(){return ITHit.WebDAV.Client.Upload.State.Paused;},OnEnter:function(_b3b){_b3b.GetProgressTracker().StopTracking();_b3b.GetProgressTracker().ResetSpeed();},StartUploadAsync:function(_b3c,_b3d){_b3c.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetResumeState());this._super(_b3c,_b3d);},AbortUpload:function(_b3e,_b3f,_b40,_b41){if(_b3e.IsContentSend){_b3e.CancelAndDeleteAsync(_b3f,_b40,function(_b42){if(_b42.IsSuccess){_b3e.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetCanceledState());}else{_b3e.AddError(_b42.Error);_b3e.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetFailedState());}_b41();},this);}else{_b3e.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetCanceledState());_b41();}}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.States.FailedState",ITHit.WebDAV.Client.Upload.States.BaseState,{GetAsEnum:function(){return ITHit.WebDAV.Client.Upload.State.Failed;},OnEnter:function(_b43){_b43.GetProgressTracker().StopTracking();_b43.GetProgressTracker().ResetSpeed();},StartUploadAsync:function(_b44,_b45){_b44.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetUploadingState());this._super(_b44,_b45);},AbortUpload:function(_b46,_b47,_b48,_b49){if(_b46.IsContentSend){_b46.CancelAndDeleteAsync(_b47,_b48,function(_b4a){if(_b4a.IsSuccess){_b46.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetCanceledState());}else{_b46.AddError(_b4a.Error);_b46.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetFailedState());}_b49();},this);}else{_b46.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetCanceledState());_b49();}}});})();(function(){ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Settings",null,{ConcurrentUploads:2,State:ITHit.WebDAV.Client.Upload.State.Queued,DeleteOnCancel:true});})();(function(){"use strict";var self=ITHit.DefineClass("ITHit.WebDAV.Client.Upload.States.Factory",null,{},{GetUploadingState:function(){if(!self._UploadingState){self._UploadingState=new ITHit.WebDAV.Client.Upload.States.UploadingState();}return self._UploadingState;},GetSkippedState:function(){if(!self._SkippedState){self._SkippedState=new ITHit.WebDAV.Client.Upload.States.SkippedState();}return self._SkippedState;},GetQueuedState:function(){if(!self._QueuedState){self._QueuedState=new ITHit.WebDAV.Client.Upload.States.QueuedState();}return self._QueuedState;},GetPausedState:function(){if(!self._PausedState){self._PausedState=new ITHit.WebDAV.Client.Upload.States.PausedState();}return self._PausedState;},GetFailedState:function(){if(!self._FailedState){self._FailedState=new ITHit.WebDAV.Client.Upload.States.FailedState();}return self._FailedState;},GetCompletedState:function(){if(!self._CompletedState){self._CompletedState=new ITHit.WebDAV.Client.Upload.States.CompletedState();}return self._CompletedState;},GetCanceledState:function(){if(!self._CanceledState){self._CanceledState=new ITHit.WebDAV.Client.Upload.States.CanceledState();}return self._CanceledState;},GetResumeState:function(){if(!self._ResumeState){self._ResumeState=new ITHit.WebDAV.Client.Upload.States.ResumeState();}return self._ResumeState;},GetState:function(_b4c){switch(_b4c){case ITHit.WebDAV.Client.Upload.State.Canceled:return self.GetCanceledState();case ITHit.WebDAV.Client.Upload.State.Completed:return self.GetCompletedState();case ITHit.WebDAV.Client.Upload.State.Failed:return self.GetFailedState();case ITHit.WebDAV.Client.Upload.State.Paused:return self.GetPausedState();case ITHit.WebDAV.Client.Upload.State.Queued:return self.GetQueuedState();case ITHit.WebDAV.Client.Upload.State.Skipped:return self.GetSkippedState();case ITHit.WebDAV.Client.Upload.State.Uploading:return self.GetUploadingState();default:throw new ITHit.Exceptions.ArgumentException(null,"oState");}}});})();(function(){ITHit.DefineClass("ITHit.WebDAV.Client.Upload.ItemSettings",null,{ForceRewrite:false,AlwaysRewriteFolders:true,IgnoreCancelErrors:false,DeleteOnCancel:false});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.ServerItem",null,{constructor:function(_b4d,oUrl){this._Session=_b4d;this._Url=oUrl;},GetProgressAsync:function(_b4f,_b50){return this._Session.GetProgressReportAsync(this._Url.GetHref(),function(_b51){if(_b51.IsSuccess&&_b51.Result[0]){var _b52=_b51.Result[0];_b4f.call(_b50,ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult(_b52));return;}_b4f.call(_b50,_b51);},this);},CancelUploadAsync:function(_b53,_b54){this._Session.CancelUploadAsync(this._Url.GetHref(),function(_b55){_b53.call(_b54,_b55);});},DeleteAsync:function(_b56,_b57,_b58,_b59){var that=this;var _b5b=new ITHit.WebDAV.Client.Upload.Utils.RepeatableAction(function(_b5c){that._Session.DeleteAsync(that._Url.GetHref(),null,function(_b5d){if(_b5d.IsSuccess){_b5c.Stop(_b5d);}else{_b5c.EndRound(_b5d);}});});_b5b.RunAsync(_b56,_b57,function(_b5e){_b58.call(_b59,_b5e);});},CancelAndDeleteAsync:function(_b5f,_b60,_b61,_b62){this.CancelUploadAsync(function(_b63){if(!_b63.IsSuccess){return _b61.call(_b62,_b63);}this.DeleteAsync(_b5f,_b60,_b61,_b62);},this);},_Url:null,_Session:null});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Providers.UploadProvider",null,{Session:null,_UploadItem:null,constructor:function(_b64,_b65,_b66,oUrl,_b68){this.FSEntry=_b66;this.Url=oUrl;this.Settings=new ITHit.WebDAV.Client.Upload.ItemSettings();if(this.FSEntry.IsFile()){this.Settings.DeleteOnCancel=_b68.DeleteOnCancel;}else{this.Settings.DeleteOnCancel=false;}this.Session=_b64;this._UploadItem=_b65;this._ProgressTracker=new ITHit.WebDAV.Client.Upload.Providers.ProgressTracker(this.FSEntry.GetSize());this._State=ITHit.WebDAV.Client.Upload.States.Factory.GetState(_b68.State);this.Errors=[];this.UploadLocation=_b64.CreateUploadLocation(this.Url);this.ServerItem=new ITHit.WebDAV.Client.Upload.ServerItem(_b64,this.Url);this.ContentWriter=_b64.CreateContentWriter(this.Url);this.ContentWriter.AddListener(ITHit.WebDAV.Client.Upload.ContentWriter.EVENT_ON_PROGRESS,this.OnRequestProgressEventHandler,this);this.ContentWriter.AddListener(ITHit.WebDAV.Client.Upload.ContentWriter.EVENT_ON_FINISH,this._LoadHandler,this);this.ContentWriter.AddListener(ITHit.WebDAV.Client.Upload.ContentWriter.EVENT_ON_START,this._StartLoadHandler,this);this._ProgressTracker.OnProgressChanged(this._SetProgress,this);},StartUploadAsync:function(_b69){this._BeginStateChange();this._State.StartUploadAsync(this,_b69);},PauseUpload:function(_b6a){this._BeginStateChange();this._State.PauseUpload(this,_b6a);},AbortUpload:function(_b6b,_b6c,_b6d){this._BeginStateChange();_b6d=_b6d||function(){};this._State.AbortUpload(this,_b6b,_b6c,_b6d);},Skip:function(){this._BeginStateChange();this._State.Skip(this);},GetGroup:function(){return this._UploadItem.GetGroup();},GetProgressTracker:function(){return this._ProgressTracker;},_ProgressTracker:null,AddListener:function(_b6e,_b6f,_b70){this._ValidateEventName(_b6e);_b70=_b70||null;ITHit.Events.AddListener(this,_b6e,_b6f,_b70);},RemoveListener:function(_b71,_b72,_b73){this._ValidateEventName(_b71);_b73=_b73||null;ITHit.Events.RemoveListener(this,_b71,_b72,_b73);},_ValidateEventName:function(_b74){switch(_b74){case ITHit.WebDAV.Client.Upload.Events.EventName.OnStateChanged:case ITHit.WebDAV.Client.Upload.Events.EventName.OnError:case ITHit.WebDAV.Client.Upload.Events.EventName.OnProgressChanged:break;default:throw new ITHit.Exceptions.ArgumentException("Not found event name `"+_b74+"`");}},CheckRetryAsync:function(_b75,_b76,_b77){var _b78=new ITHit.WebDAV.Client.Upload.Events.UploadError(this._UploadItem,_b75,function(_b79){if(!this.IsRetrySchedule){return;}_b76.call(_b77,_b79);}.bind(this));if(!this._UploadItem.OnUploadErrorCallback&&(ITHit.Events.ListenersLength(this._UploadItem,_b78.Name)===0)){_b76.call(_b77,ITHit.WebDAV.Client.Upload.Events.UploadError.GetSkipResult(_b75));return;}this.IsRetrySchedule=true;if(this._UploadItem.OnUploadErrorCallback){this._UploadItem.OnUploadErrorCallback.call(this,_b78);}ITHit.Events.DispatchEvent(this._UploadItem,_b78.Name,_b78);},Errors:null,LastError:null,AddError:function(_b7a){this.AddErrorSilent(_b7a);this._RiseOnErrorEvent(_b7a);},AddErrorSilent:function(_b7b){this.LastError=_b7b;this.Errors.push(_b7b);},SetFailed:function(_b7c){var _b7d=ITHit.WebDAV.Client.Upload.States.Factory.GetFailedState();this.AddError(_b7c);this.SetState(_b7d);},_RiseOnErrorEvent:function(_b7e){var _b7f=new ITHit.WebDAV.Client.Upload.Events.Error(this,_b7e);ITHit.Events.DispatchEvent(this,_b7f.Name,_b7f);},UploadLocation:null,IsContentSend:false,ServerItem:null,_LoadHandler:function(_b80){if(_b80.Result.Error instanceof ITHit.WebDAV.Client.Exceptions.ConflictException){this.UploadLocation.SetNotExists();this.IsContentSend=false;}this._State.OnContentCompleted(this,_b80);},_StartLoadHandler:function(_b81){this.IsContentSend=true;},OnRequestProgressEventHandler:function(_b82){this.GetProgressTracker().UpdateBytes(_b82.Progress.BytesLoaded,_b82.Progress.TotalBytes);},_SendContent:function(){this._ProgressTracker.StartTracking();if(this.Settings&&this.Settings.CustomHeaders){this.ContentWriter.CustomHeaders=this.Settings.CustomHeaders;}if(this.FSEntry.IsFolder()){if(this.Settings.ForceRewrite||this.Settings.AlwaysRewriteFolders){this.ContentWriter.BeginRewrite(this.FSEntry);}else{this.ContentWriter.BeginWrite(this.FSEntry);}}else{var _b83=new ITHit.WebDAV.Client.Upload.FileSpan(this.FSEntry.GetFile(),this._ProgressTracker.GetProgress().UploadedBytes);if(_b83.IsFullFile()&&(this.Settings.ForceRewrite||this.IsContentSend)){this.ContentWriter.BeginRewrite(this.FSEntry);return;}if(_b83.IsFullFile()&&!(this.Settings.ForceRewrite&&this.IsContentSend)){this.ContentWriter.BeginWrite(this.FSEntry);return;}this.ContentWriter.BeginAppend(_b83);}},SyncProgressWithServerAsync:function(_b84,_b85){if(!this._ProgressTracker.IsCountable()){return this.Session.CheckExistsAsync(this.Url.GetUrl(),function(_b86){if(!_b86.IsSuccess){_b84.call(_b85,_b86);return;}if(_b86.Result===true){this._ProgressTracker.SetCompleted();_b84.call(_b85,ITHit.WebDAV.Client.CancellableResult.CreateSuccessfulResult(this._ProgressTracker.GetProgress()));return;}this._ProgressTracker.Reset();_b84.call(_b85,ITHit.WebDAV.Client.CancellableResult.CreateSuccessfulResult(this._ProgressTracker.GetProgress()));},this);}return this.ServerItem.GetProgressAsync(function(_b87){if(_b87.IsSuccess){this._ProgressTracker.SyncProgress(_b87.Result);_b84.call(_b85,ITHit.WebDAV.Client.CancellableResult.CreateSuccessfulResult(this._ProgressTracker.GetProgress()));return;}if(_b87.Error instanceof ITHit.WebDAV.Client.Exceptions.NotFoundException){this._ProgressTracker.Reset();_b84.call(_b85,ITHit.WebDAV.Client.CancellableResult.CreateSuccessfulResult(this._ProgressTracker.GetProgress()));return;}_b84.call(_b85,ITHit.WebDAV.Client.CancellableResult.CreateFailedResult(_b87.Error));},this);},IsRetrySchedule:false,PrepareUploadLocation:function(){this.UploadLocation.SetCache(this.GetGroup().PathMap);this.UploadLocation.CreateAsync(this._OnGeneratePathCompleted,this);},_OnGeneratePathCompleted:function(_b88){if(_b88.IsAborted){return;}this._State.OnUploadLocationPrepared(this,_b88);},CancelAllRequests:function(_b89,_b8a){this._CancelProgressAsync(function(){this._CancelLocationCreateAsync(function(){this._CancelContentSendingAsync(_b89,_b8a);},this);},this);},_CancelLocationCreateAsync:function(_b8b,_b8c){if(this.UploadLocation.IsInProgress()){this.UploadLocation.AbortRunningCreationAsync(function(){_b8b.call(_b8c);},this);}else{_b8b.call(_b8c);}},_CancelContentSendingAsync:function(_b8d,_b8e){if(this.ContentWriter.IsActive()){this.ContentWriter.AbortAsync(function(){_b8d.call(_b8e);},this);}else{_b8d.call(_b8e);}},_CancelProgressAsync:function(_b8f,_b90){if(this.IsProgressSyncInProgress){this._SyncProgressRequest.AbortAsync(function(){_b8f.call(_b90);},this);}else{_b8f.call(_b90);}},_SyncProgressRequest:null,IsProgressSyncInProgress:false,PrepareProgress:function(){this._SyncProgressRequest=this.SyncProgressWithServerAsync(this._OnUpdateFromServerCompleted,this);},_OnUpdateFromServerCompleted:function(_b91){this.IsProgressSyncInProgress=false;if(_b91.IsAborted){return;}this._State.OnUploadProgressPrepared(this,_b91);},_IsStateChanging:function(){return this._IsChanging;},SetState:function(_b92){var _b93=this._State;this._State.OnLeave(this);this._State=_b92;this._State.OnEnter(this);var _b94=new ITHit.WebDAV.Client.Upload.Events.StateChanged(this,_b93.GetAsEnum(),this._State.GetAsEnum());ITHit.Events.DispatchEvent(this,_b94.Name,_b94);},GetState:function(){return this._State;},_State:null,_IsChanging:false,_BeginStateChange:function(){this._IsChanging=true;},_EndStateChange:function(){this._IsChanging=false;},ContentWriter:null,BeginRetry:function(_b95){this._ProgressTracker.StopTracking();this.CheckRetryAsync(_b95,this._OnCheckRetryCompleted,this);},_OnCheckRetryCompleted:function(_b96){this._State.OnRetryResult(this,_b96);},Settings:null,FSEntry:null,Url:null,CancelAndDeleteAsync:function(_b97,_b98,_b99,_b9a){this.ServerItem.CancelUploadAsync(function(_b9b){if(!this.Settings.DeleteOnCancel){_b99.call(_b9a,ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult(null));return;}this.ServerItem.DeleteAsync(_b97,_b98,function(_b9c){if(!_b9c.IsSuccess&&!this.Settings.IgnoreCancelErrors){return _b99.call(_b9a,_b9b);}this.IsContentSend=false;_b99.call(_b9a,ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult(null));},this);},this);},GetProgress:function(){return this._ProgressTracker.GetProgress();},_SetProgress:function(_b9d){var _b9e=this._Progress;this._Progress=_b9d;var _b9f=new ITHit.WebDAV.Client.Upload.Events.ProgressChanged(this,_b9e,_b9d);ITHit.Events.DispatchEvent(this,_b9f.Name,_b9f);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.UploadItemsCreated",ITHit.WebDAV.Client.Upload.Events.AsyncEvent,{Items:[],Skip:function(_ba0){if(this._IsHandled){return;}this._Skip(_ba0);},SkipAll:function(){if(this._IsHandled){return;}this._Skip(this.Items);},OverwriteAll:function(){if(this._IsHandled){return;}this._Overwrite(this.Items);},Overwrite:function(_ba1){if(this._IsHandled){return;}this._Overwrite(_ba1);},UploadAll:function(){if(this._IsHandled){return;}this.Upload(this.Items);},Upload:function(_ba2){if(this._IsHandled){return;}this._Handle({Skip:[],Overwrite:[],Original:this.Items,Upload:_ba2});},constructor:function(_ba3,_ba4,_ba5){this.Name=ITHit.WebDAV.Client.Upload.Events.EventName.OnUploadItemsCreated;this.Items=_ba4||[];this._super(_ba3,_ba5);},_Overwrite:function(_ba6){var _ba7=this._CreateResult([],_ba6);this._Handle(_ba7);},_Skip:function(_ba8){var _ba9=this._CreateResult(_ba8,[]);this._Handle(_ba9);},_CreateResult:function(_baa,_bab){return {Skip:_baa||[],Overwrite:_bab||[],Original:this.Items};},_Handle:function(_bac){_bac=_bac||this._CreateResult();this._super(_bac);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Utils.Array",null,{},{MapParallel:function(_bad,_bae,_baf,_bb0){var _bb1=[];var _bb2=0;if(_bad.length===0){setTimeout(_baf.apply(_bb0,_bad));}for(var i=0;i<_bad.length;i++){_bae.apply(_bb0,[_bad[i],i,_bad,ITHit.Utils.MakeScopeClosure(this,function(i,_bb5){_bb1[i]=_bb5;_bb2++;if(_bb2===_bad.length){setTimeout(_baf.call(_bb0,_bb1));}},i)]);}},DistinctBy:function(_bb6,_bb7,_bb8){var map=Object.create(null);_bb7=_bb7||Object.prototype.toString;for(var i=0;i<_bb6.length;i++){var _bbb=_bb7.call(_bb8,_bb6[i]).toString();if(!map[_bbb]){map[_bbb]=_bb6[i];}}return Object.keys(map).map(function(sKey){return map[sKey];});},Take:function(_bbd,_bbe){if(!_bbe){return [_bbd.shift()];}var _bbf=(_bbd.length>_bbe)?_bbe:_bbd.length;var _bc0=[];for(var i=0;i<_bbf;i++){_bc0.push(_bbd.shift());}return _bc0;},Remove:function(_bc2,_bc3){var _bc4=_bc2.indexOf(_bc3);if(_bc4>-1){_bc2.splice(_bc4,1);}}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.AutoUploader",null,{constructor:function(_bc5){this._ParallelUploads=_bc5||0;this._QueueArray=[];this._Active=[];this._Reserve=0;},AddRange:function(_bc6){_bc6.forEach(this._AddToQueue,this);this._StartUploads();},Add:function(_bc7){this._AddToQueue(_bc7);this._StartUploads();},Remove:function(_bc8){_bc8.RemoveListener(ITHit.WebDAV.Client.Upload.Events.EventName.OnStateChanged,this._OnStateChangeEventHandler,this);ITHit.WebDAV.Client.Upload.Utils.Array.Remove(this._QueueArray,_bc8);ITHit.WebDAV.Client.Upload.Utils.Array.Remove(this._Active,_bc8);this._StartUploads();},Reserve:function(_bc9){_bc9=_bc9||1;this._Reserve+=_bc9;},Release:function(_bca){_bca=_bca||1;this._Reserve-=_bca;this._StartUploads();},GetBusy:function(){return this._Active.length+this._Reserve;},GetFree:function(){var _bcb=this.GetBusy();if(_bcb>=this._ParallelUploads){return 0;}else{if(_bcb===0){return this._ParallelUploads;}else{return (this._ParallelUploads-_bcb)%this._ParallelUploads;}}},_QueueArray:null,_Active:null,_ParallelUploads:0,_OnStateChangeEventHandler:function(_bcc){if(_bcc.NewState!==ITHit.WebDAV.Client.Upload.State.Uploading){this.Remove(_bcc.Sender);}else{this._StartUploads();}},_StartUploads:function(){if(this._QueueArray.length===0){return;}var _bcd=this.GetFree();if(_bcd<=0){return;}var _bce=ITHit.WebDAV.Client.Upload.Utils.Array.Take(this._QueueArray,_bcd);if(_bce.length<1){return;}this.Reserve(_bce.length);_bce.forEach(this._StartSingle,this);},_StartSingle:function(_bcf){this._Active.push(_bcf);_bcf.StartAsync();this.Release();},_AddToQueue:function(_bd0){this._QueueArray.push(_bd0);_bd0.AddListener(ITHit.WebDAV.Client.Upload.Events.EventName.OnStateChanged,this._OnStateChangeEventHandler,this);},_Reserve:0});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Queue",null,{Uploader:null,_UnderlyingArray:null,_Session:null,_AutoUploader:null,constructor:function(_bd1){this.Uploader=_bd1;this._Session=new ITHit.WebDAV.Client.Upload.UploaderSession();this._UnderlyingArray=[];this._GroupManager=new ITHit.WebDAV.Client.Upload.Groups.GroupManager();this._AutoUploader=new ITHit.WebDAV.Client.Upload.AutoUploader(this.Uploader.Settings.ConcurrentUploads);},ShouldReplaceDuplicate:function(_bd2){var _bd3=this.GetByUrl(_bd2.GetUrl());var _bd4=_bd3.GetState();return !(_bd4===ITHit.WebDAV.Client.Upload.State.Uploading||_bd4===ITHit.WebDAV.Client.Upload.State.Paused);},AddGroup:function(sUrl,_bd6,_bd7){var _bd8=[];for(var i=0;i<_bd6.length;i++){var _bda=_bd6[i];var _bdb=new ITHit.WebDAV.Client.Upload.UploadItem(sUrl,_bda,_bd7,this._Session,this._GroupManager,this.Uploader.Settings);if(this.HasUrl(_bdb.GetUrl())){if(this.ShouldReplaceDuplicate(_bdb)){this.RemoveByUrl(_bdb.GetUrl());}else{continue;}}_bd8.push(_bdb);}this._DispatchOnUploadItemsCreatedAsync(_bd8,this._OnUploadItemsCreatedAsyncDispatched.bind(this));},Add:function(_bdc){var sUrl=_bdc.GetUrl();if(this.HasUrl(sUrl)){return;}this._UnderlyingArray.push(_bdc);var _bde=new ITHit.WebDAV.Client.Upload.Events.QueueChanged(this,[_bdc]);ITHit.Events.DispatchEvent(this,_bde.Name,[_bde]);this._AutoUploader.Add(_bdc);},AddRange:function(_bdf){for(var i=0;i<_bdf.length;i++){var _be1=_bdf[i];var sUrl=_be1.GetUrl();if(this.HasUrl(sUrl)){continue;}this._UnderlyingArray.push(_be1);}this._GroupManager.CreateGroup(_bdf);this._OnQueueChanged(_bdf,null);var _be3=_bdf.filter(function(_be4){return _be4.GetState()===ITHit.WebDAV.Client.Upload.State.Queued;});this._AutoUploader.AddRange(_be3);},Restart:function(_be5){for(var i=0;i<_be5.length;i++){if(!this.HasUrl(_be5[i].GetUrl())){throw new ITHit.Exceptions.ArgumentException("Item should be a part of queue`");}}this._AutoUploader.AddRange(_be5);},GetByUrl:function(sUrl){return ITHit.Utils.FindBy(this._UnderlyingArray,function(_be8){return _be8.GetUrl()===sUrl;});},GetLength:function(){return this._UnderlyingArray.length;},HasUrl:function(sUrl){return !!this.GetByUrl(sUrl);},RemoveByUrl:function(sUrl){var _beb=this.GetByUrl(sUrl);if(!_beb){return;}var _bec=_beb.GetState();if(_bec===ITHit.WebDAV.Client.Upload.State.Uploading||_bec===ITHit.WebDAV.Client.Upload.State.Paused){_beb.Abort();}var _bed=ITHit.Utils.IndexOf(this._UnderlyingArray,_beb);this._UnderlyingArray.splice(_bed,1);this._OnQueueChanged(null,[_beb]);this._AutoUploader.Remove(_beb);},OnUploadItemsCreatedCallback:null,_OnQueueChanged:function(_bee,_bef){var _bf0=new ITHit.WebDAV.Client.Upload.Events.QueueChanged(this,_bee,_bef);ITHit.Events.DispatchEvent(this,_bf0.Name,[_bf0]);},_DispatchOnUploadItemsCreatedAsync:function(_bf1,_bf2){var _bf3=new ITHit.WebDAV.Client.Upload.Events.UploadItemsCreated(this,_bf1.slice(),_bf2);if(!this.OnUploadItemsCreatedCallback&&(ITHit.Events.ListenersLength(this,_bf3.Name)===0)){_bf3.OverwriteAll();}if(this.OnUploadItemsCreatedCallback){this.OnUploadItemsCreatedCallback(_bf3);}ITHit.Events.DispatchEvent(this,_bf3.Name,_bf3);},AddListener:function(_bf4,_bf5,_bf6){_bf6=_bf6||null;switch(_bf4){case ITHit.WebDAV.Client.Upload.Events.EventName.OnQueueChanged:case ITHit.WebDAV.Client.Upload.Events.EventName.OnUploadItemsCreated:ITHit.Events.AddListener(this,_bf4,_bf5,_bf6);break;default:throw new ITHit.WebDAV.Client.Exceptions.WebDavException("Not found event name `"+_bf4+"`");}},RemoveListener:function(_bf7,_bf8,_bf9){ITHit.Events.RemoveListener(this,_bf7,_bf8,_bf9);},_OnUploadItemsCreatedAsyncDispatched:function(_bfa){if(_bfa.Upload){this.AddRange(_bfa.Upload);return;}this._OnUploadItemsCreatedAsyncDispatchedDeprecated(_bfa);},_OnUploadItemsCreatedAsyncDispatchedDeprecated:function(_bfb){var _bfc=this._FilterSkippedItems(_bfb);var _bfd=this._CreateUrlUploadItemMap(_bfb.Overwrite);_bfc.forEach(function(_bfe){if(_bfd.Has(_bfe.GetUrl())){_bfe.SetOverwrite(true);}});this.AddRange(_bfc);},_FilterSkippedItems:function(_bff){var _c00=this._CreateUrlUploadItemMap(_bff.Skip);return _bff.Original.filter(function(_c01){return !_c00.Has(_c01.GetUrl());});},_CreateUrlUploadItemMap:function(_c02){var oMap=new ITHit.WebDAV.Client.Upload.Collections.Map();_c02.forEach(function(_c04){oMap.Set(_c04.GetUrl(),_c04);});return oMap;},_GroupManager:null});})();(function(){"use strict";var _c05=ITHit.DefineClass("ITHit.WebDAV.Client.Upload.DropZoneCollection",null,{_UnderlyingSet:null,Uploader:null,constructor:function(_c06){this._Uploader=_c06;this._UnderlyingSet={};},AddById:function(_c07){var _c08=this.GetById(_c07);if(_c08){return _c08;}var _c09=new ITHit.WebDAV.Client.Upload.Controls.DropZone(_c07);this._UnderlyingSet[_c07]=_c09;this._RaiseOnCollectionChanged([_c09],[]);return _c09;},GetById:function(_c0a){return this._UnderlyingSet[_c0a];},RemoveById:function(_c0b){var _c0c=this.GetById(_c0b);if(_c0c){delete this._UnderlyingSet[_c0b];this._RaiseOnCollectionChanged([],[_c0c]);}},AddListener:function(_c0d,_c0e,_c0f){_c0f=_c0f||null;this._CheckEventNameOtThrow(_c0d);ITHit.Events.AddListener(this,_c0d,_c0e,_c0f);},RemoveListener:function(_c10,_c11,_c12){_c12=_c12||null;this._CheckEventNameOtThrow(_c10);ITHit.Events.RemoveListener(this,_c10,_c11,_c12);},_CheckEventNameOtThrow:function(_c13){if(_c13!==_c05.EVENT_ON_COLLECTION_CHANGED){throw new ITHit.WebDAV.Client.Exceptions.NotFoundEventNameException(_c13);}},_RaiseOnCollectionChanged:function(_c14,_c15){ITHit.Events.DispatchEvent(this,_c05.EVENT_ON_COLLECTION_CHANGED,[{Sender:this,AddedItems:_c14||[],RemovedItems:_c15||[]}]);}},{EVENT_ON_COLLECTION_CHANGED:"OnCollectionChanged"});})();(function(){var _c16=ITHit.DefineClass("ITHit.WebDAV.Client.Upload.InputCollection",null,{_UnderlyingSet:null,Uploader:null,constructor:function(_c17){this._UnderlyingArray=[];this._Uploader=_c17;},AddById:function(_c18){var _c19=new ITHit.WebDAV.Client.Upload.Controls.Input(_c18);this._UnderlyingArray[_c18]=_c19;this._RaiseOnCollectionChanged([_c19],[]);return _c19;},GetById:function(_c1a){return this._UnderlyingArray[_c1a];},RemoveById:function(_c1b){var _c1c=this.GetById(_c1b);if(_c1c){delete this._UnderlyingSet[_c1b];this._RaiseOnCollectionChanged([],[_c1c]);}},AddListener:function(_c1d,_c1e,_c1f){_c1f=_c1f||null;this._CheckEventNameOtThrow(_c1d);ITHit.Events.AddListener(this,_c1d,_c1e,_c1f);},RemoveListener:function(_c20,_c21,_c22){_c22=_c22||null;this._CheckEventNameOtThrow(_c20);ITHit.Events.RemoveListener(this,_c20,_c21,_c22);},_CheckEventNameOtThrow:function(_c23){if(_c23!==_c16.EVENT_ON_COLLECTION_CHANGED){throw new ITHit.WebDAV.Client.Exceptions.NotFoundEventNameException(_c23);}},_RaiseOnCollectionChanged:function(_c24,_c25){ITHit.Events.DispatchEvent(this,_c16.EVENT_ON_COLLECTION_CHANGED,[{Sender:this,AddedItems:_c24||[],RemovedItems:_c25||[]}]);}},{EVENT_ON_COLLECTION_CHANGED:"OnCollectionChanged"});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Uploader",null,{DropZones:null,Inputs:null,Queue:null,Settings:null,_UploadProvider:null,constructor:function(){this.Inputs=new ITHit.WebDAV.Client.Upload.InputCollection(this);this.Inputs.AddListener(ITHit.WebDAV.Client.Upload.InputCollection.EVENT_ON_COLLECTION_CHANGED,this._OnControlCollectionChangedEventHandler,this);this.DropZones=new ITHit.WebDAV.Client.Upload.DropZoneCollection(this);this.DropZones.AddListener(ITHit.WebDAV.Client.Upload.DropZoneCollection.EVENT_ON_COLLECTION_CHANGED,this._OnControlCollectionChangedEventHandler,this);this.Settings=new ITHit.WebDAV.Client.Upload.Settings();this.Queue=new ITHit.WebDAV.Client.Upload.Queue(this);},SetUploadUrl:function(sUrl){this._UploadUrl=sUrl;},GetUploadUrl:function(){return this._UploadUrl;},_OnControlCollectionChangedEventHandler:function(_c27){_c27.AddedItems.forEach(function(_c28){_c28.AddListener(ITHit.WebDAV.Client.Upload.Controls.HtmlControl.EVENT_ON_FILE_INPUT_HANDLED,this._OnFileInputEventHandler.bind(this));}.bind(this));_c27.RemovedItems.forEach(function(_c29){_c29.RemoveListener(ITHit.WebDAV.Client.Upload.Controls.HtmlControl.EVENT_ON_FILE_INPUT_HANDLED,this._OnFileInputEventHandler.bind(this));}.bind(this));},_OnFileInputEventHandler:function(_c2a){this.Queue.AddGroup(this._UploadUrl,_c2a.AsyncResult.Result,_c2a.Source);}});})();ITHit.Temp={};
|
|
87
|
+
(function(){ITHit.DefineClass("ITHit.Environment",null,{__static:{OS:ITHit.DetectOS.OS}});})();ITHit.oNS=ITHit.Declare("ITHit.Exceptions");ITHit.oNS.LoggerException=function(_101,_102){ITHit.Exceptions.LoggerException.baseConstructor.call(this,_101,_102);};ITHit.Extend(ITHit.oNS.LoggerException,ITHit.Exception);ITHit.oNS.LoggerException.prototype.Name="LoggerException";ITHit.DefineClass("ITHit.LogLevel",null,{},{All:32,Debug:16,Info:8,Warn:4,Error:2,Fatal:1,Off:0});(function(){var _103={};var _104={};var _105={};for(var _106 in ITHit.LogLevel){_103[ITHit.LogLevel[_106]]=[];_105[ITHit.LogLevel[_106]]=[];}var _107=function(_108,_109,iTo,_10b){for(var _10c in ITHit.LogLevel){if(ITHit.LogLevel[_10c]>iTo){continue;}if(!ITHit.LogLevel[_10c]||(_109>=ITHit.LogLevel[_10c])){continue;}if(_108){_105[ITHit.LogLevel[_10c]].push(_10b);}else{for(var i=0;i<_105[ITHit.LogLevel[_10c]].length;i++){if(_105[ITHit.LogLevel[_10c]][i]==_10b){_105[ITHit.LogLevel[_10c]].splice(i,1);}}}}};_107.add=function(iTo,_10f){_107.increase(ITHit.LogLevel.Off,iTo,_10f);};_107.del=function(iTo,_111){_107.decrease(ITHit.LogLevel.Off,iTo,_111);};_107.increase=function(_112,iTo,_114){_107(true,_112,iTo,_114);};_107.decrease=function(_115,iTo,_117){_107(false,_115,iTo,_117);};ITHit.DefineClass("ITHit.Logger",null,{},{Level:ITHit.Config.LogLevel||ITHit.LogLevel.Debug,AddListener:function(_118,_119){if(_119==ITHit.LogLevel.Off){this.RemoveListener();}var _11a=0;var _11b=0;outer:for(var _11c in _103){for(var i=0;i<_103[_11c].length;i++){if(_103[_11c][i]==_118){_11a=_11c;_11b=i;break outer;}}}if(!_11a){_103[_119].push(_118);_107.add(_119,_118);}else{if(_119!=_11a){_103[_11a].splice(_11b,1);_103[_119].push(_118);if(_119>_11a){_107.increase(_11a,_119,_118);}else{_107.decrease(_119,_11a,_118);}}}},RemoveListener:function(_11e){outer:for(var _11f in _103){for(var i=0;i<_103[_11f].length;i++){if(_103[_11f][i]==_11e){_103[_11f].splice(i,1);_107.del(_11f,_11e);break outer;}}}return true;},SetLogLevel:function(_121,_122){return this.AddListener(_121,_122,true);},GetLogLevel:function(_123){for(var _124 in _103){for(var i=0;i<_103[_124].length;i++){if(_103[_124][i]==_123){return _124;}}}return false;},GetListenersForLogLevel:function(_126){return _105[_126];},GetCount:function(_127){return _105[_127].length;},WriteResponse:function(_128){if(Logger.GetCount(ITHit.LogLevel.Info)){var sStr="";if(_128 instanceof HttpWebResponse){sStr+="\n"+_128.StatusCode+" "+_128.StatusDescription+"\n";}sStr+=_128.ResponseUri+"\n";for(var _12a in _128.Headers){sStr+=_12a+": "+_128.Headers[_12a]+"\n";}sStr+=_128.GetResponse();this.WriteMessage(sStr);}},WriteMessage:function(_12b,_12c){_12c=("undefined"==typeof _12c)?ITHit.LogLevel.Info:parseInt(_12c);if(ITHit.Logger.GetCount(_12c)){var _12d=this.GetListenersForLogLevel(_12c);var _12b=String(_12b).replace(/([^\n])$/,"$1\n");for(var i=0;i<_12d.length;i++){try{_12d[i](_12b,ITHit.LogLevel.Info);}catch(e){if(!_12d[i] instanceof Function){throw new ITHit.Exceptions.LoggerException("Log listener expected function, passed: \""+_12d[i]+"\"",e);}else{throw new ITHit.Exceptions.LoggerException("Message could'not be logged.",e);}}}}},StartLogging:function(){},FinishLogging:function(){},StartRequest:function(){},FinishRequest:function(){}});})();ITHit.oNS=ITHit.Declare("ITHit.Exceptions");ITHit.oNS.PhraseException=function(_12f,_130){ITHit.Exceptions.PhraseException.baseConstructor.call(this,_12f,_130);};ITHit.Extend(ITHit.oNS.PhraseException,ITHit.Exception);ITHit.oNS.PhraseException.prototype.Name="PhraseException";ITHit.Phrases=(function(){var _131={};var _132=function(_133){this._arguments=_133;};_132.prototype.Replace=function(_134){var _135=_134.substr(1,_134.length-2);return ("undefined"!=typeof this._arguments[_135])?this._arguments[_135]:_134;};var _136=function(_137){this._phrase=_137;};_136.prototype.toString=function(){return this._phrase;};_136.prototype.Paste=function(){var _138=this._phrase;if(/\{\d+?\}/.test(_138)){var _139=new _132(arguments);_138=_138.replace(/\{(\d+?)\}/g,function(args){return _139.Replace(args);});}return _138;};var _13b=function(){};_13b.prototype.LoadJSON=function(_13c,_13d){var _13e=ITHit.Utils;if(_13d&&!_13e.IsString(_13d)){throw new ITHit.Exceptions.PhraseException("Namespace expected to be a string.");}var _13f=this;if(_13d){_13f=ITHit.Declare(_13d);}try{var _140=_13c;if(_13e.IsString(_140)){_140=eval("("+_13c+")");}this._AddPhrases(_140,_13f);}catch(e){console.dir(e);throw new ITHit.Exceptions.PhraseException("Wrong text structure.",e);}};_13b.prototype.LoadLocalizedJSON=function(_141,_142,_143){var _144=ITHit.Utils,_145=_144.IsUndefined,_146=_144.IsObject;if(!_141||!_144.IsObjectStrict(_141)){throw new ITHit.Exceptions.PhraseException("Default phrases expected to be an JSON object.");}if(_142&&!_144.IsObjectStrict(_142)){throw new ITHit.Exceptions.PhraseException("Default phrases expected to be an JSON object");}var _147;if(_142){_147={};this._MergePhrases(_147,_142);this._MergePhrases(_147,_141);}else{_147=_141;}this.LoadJSON(_147,_143);};_13b.prototype._MergePhrases=function(dest,_149){var _14a=ITHit.Utils,_14b=_14a.IsUndefined,_14c=_14a.IsObject;for(var prop in _149){if(!_149.hasOwnProperty(prop)){continue;}if(_14b(dest[prop])){dest[prop]=_149[prop];}else{if(_14c(dest[prop])){this._MergePhrases(dest[prop],_149[prop]);}}}};_13b.prototype._AddPhrases=function(_14e,_14f){_14f=_14f||this;for(var _150 in _14e){if(("object"!=typeof _14e[_150])||!(_14e[_150] instanceof Object)){switch(_150){case "_AddPhrases":case "LoadJSON":case "LoadLocalizedJSON":case "_Merge":case "prototype":case "toString":throw new ITHit.Exceptions.PhraseException("\""+_150+"\" is reserved word.");break;}_14f[_150]=new _136(_14e[_150]);}else{this._AddPhrases(_14e[_150],_14f[_150]?_14f[_150]:(_14f[_150]={}));}}};return new _13b();})();ITHit.oNS=ITHit.Declare("ITHit.Exceptions");ITHit.oNS.XPathException=function(_151,_152){ITHit.Exceptions.XPathException.baseConstructor.call(this,_151,_152);};ITHit.Extend(ITHit.oNS.XPathException,ITHit.Exception);ITHit.oNS.XPathException.prototype.Name="XPathException";ITHit.XPath={_component:null,_version:null};ITHit.XPath.evaluate=function(_153,_154,_155,_156,_157){if(("string"!=typeof _153)&&!(_153 instanceof String)){throw new ITHit.Exceptions.XPathException("Expression was expected to be a string in ITHit.XPath.eveluate.");}if(!(_154 instanceof ITHit.XMLDoc)){throw new ITHit.Exceptions.XPathException("Element was expected to be an ITHit.XMLDoc object in ITHit.XPath.evaluate.");}if(_155&&!(_155 instanceof ITHit.XPath.resolver)){throw new ITHit.Exceptions.XPathException("Namespace resolver was expected to be an ITHit.XPath.resolver object in ITHit.XPath.evaluate.");}if(_156&&!(_156 instanceof ITHit.XPath.result)){throw new ITHit.Exceptions.XPathException("Result expected to be an ITHit.XPath.result object in ITHit.XPath.evaluate.");}_155=_155||null;_156=_156||null;if(document.implementation.hasFeature("XPath","3.0")&&document.evaluate){var _158=_154._get();var _159=_158.ownerDocument||_158;if(_156){_159.evaluate(_153,_158,_155,ITHit.XPath.result.UNORDERED_NODE_SNAPSHOT_TYPE,_156._res);return;}var oRes=new ITHit.XPath.result(_159.evaluate(_153,_158,_155,ITHit.XPath.result.UNORDERED_NODE_SNAPSHOT_TYPE,null));if(!_157){return oRes;}else{return oRes.iterateNext();}}else{if(undefined!==window.ActiveXObject){var _158=_154._get();var _15b=false;try{_158.getProperty("SelectionNamespaces");_15b=true;}catch(e){}var _15c=false;if(3==ITHit.XMLDoc._version){var sXml=_158.xml.replace(/^\s+|\s+$/g,"");var _15e="urn:uuid:c2f41010-65b3-11d1-a29f-00aa00c14882/";var _15f="cutted";if(-1!=sXml.indexOf(_15e)||true){var _160=sXml.replace(_15e,_15f);var _161=new ITHit.XMLDoc();_161.load(_160);if(_155){var oNs=_155.getAll();for(var _163 in oNs){if(_15e==oNs[_163]){oNs.add(_163,_15f);break;}}}_158=_161._get();_15b=true;_15c=true;}}if(_15b&&_155&&_155.length()){var _164=_155.getAll();var aNs=[];for(var _163 in _164){aNs.push("xmlns:"+_163+"='"+_164[_163]+"'");}_158.setProperty("SelectionNamespaces",aNs.join(" "));}if(_15c){_158=_158.documentElement;}try{if(!_157){if(!_156){return new ITHit.XPath.result(_158.selectNodes(_153));}else{_156._res=_158.selectNodes(_153);return;}}else{var mOut=_158.selectSingleNode(_153);if(mOut){return new ITHit.XMLDoc(mOut);}else{return mOut;}}}catch(e){if(!_15b&&(-2147467259==e.number)&&_155&&_155.length()){var sEl=new ITHit.XMLDoc(_158).toString();var oEl=new ITHit.XMLDoc();oEl.load(sEl);_158=oEl._get();var _164=_155.getAll();var aNs=[];for(var _163 in _164){aNs.push("xmlns:"+_163+"='"+_164[_163]+"'");}_158.setProperty("SelectionNamespaces",aNs.join(" "));_158=_158.documentElement;if(!_157){if(!_156){return new ITHit.XPath.result(_158.selectNodes(_153));}else{_156._res=_158.selectNodes(_153);return;}}else{var mOut=_158.selectSingleNode(_153);if(mOut){return new ITHit.XMLDoc(mOut);}else{return mOut;}}}else{throw new ITHit.Exceptions.XPathException("Evaluation failed for searching \""+_153+"\".",e);}}}}throw new ITHit.Exceptions.XPathException("XPath support is not implemented for your browser.");};ITHit.XPath.selectSingleNode=function(_169,_16a,_16b){return ITHit.XPath.evaluate(_169,_16a,_16b,false,true);};ITHit.XPath.resolver=function(){this._ns={};this._length=0;};ITHit.XPath.resolver.prototype.add=function(_16c,sNs){this._ns[_16c]=sNs;this._length++;};ITHit.XPath.resolver.prototype.remove=function(_16e){delete this._ns[_16e];this._length--;};ITHit.XPath.resolver.prototype.get=function(_16f){return this._ns[_16f]||null;};ITHit.XPath.resolver.prototype.lookupNamespaceURI=ITHit.XPath.resolver.prototype.get;ITHit.XPath.resolver.prototype.getAll=function(){var oOut={};for(var _171 in this._ns){oOut[_171]=this._ns[_171];}return oOut;};ITHit.XPath.resolver.prototype.length=function(){return this._length;};ITHit.XPath.result=function(_172){this._res=_172;this._i=0;this.length=_172.length?_172.length:_172.snapshotLength;};ITHit.XPath.result.ANY_TYPE=0;ITHit.XPath.result.NUMBER_TYPE=1;ITHit.XPath.result.STRING_TYPE=2;ITHit.XPath.result.BOOLEAN_TYPE=3;ITHit.XPath.result.UNORDERED_NODE_ITERATOR_TYPE=4;ITHit.XPath.result.ORDERED_NODE_ITERATOR_TYPE=5;ITHit.XPath.result.UNORDERED_NODE_SNAPSHOT_TYPE=6;ITHit.XPath.result.ORDERED_NODE_SNAPSHOT_TYPE=7;ITHit.XPath.result.ANY_UNORDERED_NODE_TYPE=8;ITHit.XPath.result.FIRST_ORDERED_NODE_TYPE=9;ITHit.XPath.result.prototype.iterateNext=function(_173){var mOut;if(!_173){if(!this._res.snapshotItem){try{mOut=this._res[this._i++];}catch(e){return null;}}else{mOut=this._res.snapshotItem(this._i++);}}else{mOut=this._res[_173];}if(mOut){return new ITHit.XMLDoc(mOut);}else{return mOut;}};ITHit.XPath.result.prototype.snapshotItem=ITHit.XPath.result.prototype.iterateNext;ITHit.XPath.result.prototype.type=function(){return this._res.resultType;};ITHit.XPath.result.prototype._get=function(){return this._res;};ITHit.oNS=ITHit.Declare("ITHit.Exceptions");ITHit.oNS.XMLDocException=function(_175,_176){ITHit.Exceptions.XMLDocException.baseConstructor.call(this,_175,_176);};ITHit.Extend(ITHit.oNS.XMLDocException,ITHit.Exception);ITHit.oNS.XMLDocException.prototype.Name="XMLDocException";ITHit.XMLDoc=(function(){var _177;var _178=1;var _179=2;var _17a=3;var _17b=4;var _17c=5;var _17d=6;var _17e=7;var _17f=8;var _180=9;var _181=10;var _182=11;var _183=12;var _184=function(_185){this._xml=null;this._encoding=null;if(null!==_185){if(!_185||("object"!=typeof _185)){if(undefined!==window.ActiveXObject){if(_177){this._xml=new window.ActiveXObject(_177);}else{var _186=["Msxml2.DOMDocument.6.0","Msxml2.DOMDocument.4.0","Msxml2.DOMDocument.3.0"];var _187=[6,4,3];for(var i=0;i<_186.length;i++){try{this._xml=new window.ActiveXObject(_186[i]);_184._version=_187[i];_177=_186[i];break;}catch(e){if(3==_187[i]){throw new ITHit.Exception("XML component is not supported.");}}}}}else{if(document.implementation&&document.implementation.createDocument){this._xml=document.implementation.createDocument("","",null);}}if(undefined===this._xml){throw new ITHit.Exceptions.XMLDocException("XML support for current browser is not implemented.");}this._xml.async=false;}else{this._xml=_185;}}else{this._xml=null;return null;}};_184._version=0;_184.prototype.contentEncoding=function(_189){if(undefined!==_189){this._encoding=_189;}return this._encoding;};_184.prototype.load=function(_18a){if(!ITHit.Utils.IsString(_18a)){throw new ITHit.Exceptions.XMLDocException("String was expected for xml parsing.");}if(!_18a){return new _184();}var oDoc;if(undefined!==window.ActiveXObject){try{if(3==_184._version){_18a=_18a.replace(/(?:urn\:uuid\:c2f41010\-65b3\-11d1\-a29f\-00aa00c14882\/)/g,"cutted");}if(_184._version){_18a=_18a.replace(/<\?.*\?>/,"");this._xml.loadXML(_18a);}else{var _18c=new _184();if(3==_184._version){_18a=_18a.replace(/(?:urn\:uuid\:c2f41010\-65b3\-11d1\-a29f\-00aa00c14882\/)/g,"cutted");}_18c.load(_18a);this._xml=_18c._get();}}catch(e){var _18d=e;}}else{if(document.implementation.createDocument){try{var _18e=new DOMParser();oDoc=_18e.parseFromString(_18a,"text/xml");this._xml=oDoc;}catch(e){var _18d=e;}}else{throw new ITHit.Exceptions.XMLDocException("Cannot create XML parser object. Support for current browser is not implemented.");}}if(undefined!==_18d){throw new ITHit.Exceptions.XMLDocException("ITHit.XMLDoc.load() method failed.\nPossible reason: syntax error in passed XML string.",_18d);}};_184.prototype.appendChild=function(_18f){if(!_18f instanceof ITHit.XMLDoc){throw ITHit.Exceptions.XMLDocException("Instance of XMLDoc was expected in appendChild method.");}this._xml.appendChild(_18f._get());};_184.prototype.createElement=function(_190){return new _184(this._xml.createElement(_190));};_184.prototype.createElementNS=function(sNS,_192){if(this._xml.createElementNS){var _193=this._xml.createElementNS(sNS,_192);return new ITHit.XMLDoc(_193);}else{try{return new _184(this._xml.createNode(_178,_192,sNS));}catch(e){throw new ITHit.Exceptions.XMLDocException("Node is not created.",e);}}throw new ITHit.Exceptions.XMLDocException("createElementNS for current browser is not implemented.");};_184.prototype.createTextNode=function(_194){return new _184(this._xml.createTextNode(_194));};_184.prototype.getElementById=function(sId){return new _184(this._xml.getElementById(sId));};_184.prototype.getElementsByTagName=function(_196){return new _184(this._xml.getElementsByTagName(_196));};_184.prototype.childNodes=function(){var _197=this._xml.childNodes;var _198=[];for(var i=0;i<_197.length;i++){_198.push(new ITHit.XMLDoc(_197[i]));}return _198;};_184.prototype.getElementsByTagNameNS=function(_19a,_19b){if(this._xml.getElementsByTagNameNS){var _19c=this._xml.getElementsByTagNameNS(_19a,_19b);}else{var _19d=this.toString();var _19e=new ITHit.XMLDoc();_19e.load(_19d);var _19f=new ITHit.XPath.resolver();_19f.add("a",_19a);var oRes=ITHit.XPath.evaluate(("//a:"+_19b),_19e,_19f);var _19c=oRes._get();}var aRet=[];for(var i=0;i<_19c.length;i++){var _1a3=new ITHit.XMLDoc(_19c[i]);aRet.push(_1a3);}return aRet;};_184.prototype.setAttribute=function(_1a4,_1a5){this._xml.setAttribute(_1a4,_1a5);};_184.prototype.hasAttribute=function(_1a6){return this._xml.hasAttribute(_1a6);};_184.prototype.getAttribute=function(_1a7){return this._xml.getAttribute(_1a7);};_184.prototype.removeAttribute=function(_1a8){this._xml.removeAttribute(_1a8);};_184.prototype.hasAttributeNS=function(_1a9){return this._xml.hasAttribute(_1a9);};_184.prototype.getAttributeNS=function(_1aa){return this._xml.getAttribute(_1aa);};_184.prototype.removeAttributeNS=function(_1ab){this._xml.removeAttribute(_1ab);};_184.prototype.removeChild=function(_1ac){if(!_1ac instanceof ITHit.XMLDoc){throw ITHit.Exceptions.XMLDocException("Instance of XMLDoc was expected in ITHit.XMLDoc.removeChild() method.");}this._xml.removeChild(_1ac);return new ITHit.XMLDoc(_1ac);};_184.prototype.removeNode=function(_1ad){if(!_1ad instanceof ITHit.XMLDoc){throw ITHit.Exceptions.XMLDocException("Instance of XMLDoc was expected in ITHit.XMLDoc.removeNode() method.");}_1ad=_1ad._get();if(_1ad.removeNode){return new _184(_1ad.removeNode(true));}else{return new _184(_1ad.parentNode.removeChild(_1ad));}};_184.prototype.cloneNode=function(_1ae){if(undefined===_1ae){_1ae=true;}return new ITHit.XMLDoc(this._xml.cloneNode(_1ae));};_184.prototype.getProperty=function(_1af){return this._xml[_1af];};_184.prototype.setProperty=function(_1b0,_1b1){this._xml[_1b0]=_1b1;};_184.prototype.nodeName=function(){return this._xml.nodeName;};_184.prototype.nextSibling=function(){return new ITHit.XMLDoc(this._xml.nextSibling);};_184.prototype.namespaceURI=function(){return this._xml.namespaceURI;};_184.prototype.hasChildNodes=function(){return (this._xml&&this._xml.hasChildNodes());};_184.prototype.firstChild=function(){return new _184(this._xml.firstChild);};_184.prototype.localName=function(){return this._xml.localName||this._xml.baseName;};_184.prototype.nodeValue=function(){var _1b2="";if(this._xml){_1b2=this._xml.nodeValue;}if("object"!=typeof _1b2){return _1b2;}else{return new ITHit.XMLDoc(_1b2);}};_184.prototype.nodeType=function(){return this._xml.nodeType;};_184.prototype._get=function(){return this._xml;};_184.prototype.toString=function(_1b3){return _184.toString(this._xml,this._encoding,_1b3);};_184.toString=function(_1b4,_1b5,_1b6){if(!_1b4){throw new ITHit.Exceptions.XMLDocException("ITHit.XMLDoc: XML object expected.");}var _1b7="";var _1b8=true;if(undefined!==_1b4.xml){_1b7=_1b4.xml.replace(/^\s+|\s+$/g,"");_1b8=false;}else{if(document.implementation.createDocument&&(undefined!==XMLSerializer)){_1b7=new XMLSerializer().serializeToString(_1b4);_1b8=false;}}if(_1b7){if(_1b5){_1b5=" encoding=\""+this._encoding+"\"";}else{_1b5="";}var sOut=((!_1b6)?"<?xml version=\"1.0\""+_1b5+"?>":"")+_1b7.replace(/^<\?xml[^?]+\?>/,"");return sOut;}if(_1b8){throw new ITHit.Exceptions.XMLDocException("XML parser object is not created.");}return _1b7;};return _184;})();ITHit.XMLDoc.nodeTypes={NODE_ELEMENT:1,NODE_ATTRIBUTE:2,NODE_TEXT:3,NODE_CDATA_SECTION:4,NODE_ENTITY_REFERENCE:5,NODE_ENTITY:6,NODE_PROCESSING_INSTRUCTION:7,NODE_COMMENT:8,NODE_DOCUMENT:9,NODE_DOCUMENT_TYPE:10,NODE_DOCUMENT_FRAGMENT:11,NODE_NOTATION:12};ITHit.oNS=ITHit.Declare("ITHit.Exceptions");ITHit.oNS.ArgumentNullException=function(_1ba){var _1bb="Variable \""+_1ba+"\" nas null value.";ITHit.Exceptions.ArgumentNullException.baseConstructor.call(this,_1bb);};ITHit.Extend(ITHit.oNS.ArgumentNullException,ITHit.Exception);ITHit.oNS.ArgumentNullException.prototype.Name="ArgumentNullException";ITHit.DefineClass("ITHit.WebDAV.Client.WebDavUtil",null,{__static:{VerifyArgumentNotNull:function(_1bc,_1bd){if(_1bc===null){throw new ITHit.Exceptions.ArgumentNullException(_1bd);}},VerifyArgumentNotNullOrEmpty:function(_1be,_1bf){if(_1be===null||_1be===""){throw new ITHit.Exceptions.ArgumentNullException(_1bf);}},NormalizeEmptyToNull:function(_1c0){if(_1c0===null||_1c0===""){return null;}return _1c0;},NormalizeEmptyOrNoneToNull:function(_1c1){if(_1c1===null||_1c1===""||_1c1=="None"){return null;}return _1c1;},HashCode:function(str){var hash=0;for(var i=0;i<str.length;i++){var _1c5=str.charCodeAt(i);hash=((hash<<5)-hash)+_1c5;hash=hash&hash;}return hash;}}});ITHit.DefineClass("ITHit.WebDAV.Client.PropertyName",null,{Name:null,NamespaceUri:null,constructor:function(_1c6,_1c7){ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNullOrEmpty(_1c6,"sName");this.Name=_1c6;this.NamespaceUri=_1c7;},Equals:function(oObj,_1c9){_1c9=_1c9||false;if(this==oObj){return true;}if(!oObj instanceof ITHit.WebDAV.Client.PropertyName){return false;}return _1c9?this.Name.toLowerCase()===oObj.Name.toLowerCase()&&this.NamespaceUri.toLowerCase()===oObj.NamespaceUri.toLowerCase():this.Name===oObj.Name&&this.NamespaceUri===oObj.NamespaceUri;},IsStandardProperty:function(){if(!ITHit.WebDAV.Client.PropertyName.StandardNames){ITHit.WebDAV.Client.PropertyName.StandardNames=[ITHit.WebDAV.Client.DavConstants.ResourceType,ITHit.WebDAV.Client.DavConstants.DisplayName,ITHit.WebDAV.Client.DavConstants.CreationDate,ITHit.WebDAV.Client.DavConstants.GetLastModified,ITHit.WebDAV.Client.DavConstants.GetContentLength,ITHit.WebDAV.Client.DavConstants.GetContentType,ITHit.WebDAV.Client.DavConstants.GetETag,ITHit.WebDAV.Client.DavConstants.IsCollection,ITHit.WebDAV.Client.DavConstants.IsFolder,ITHit.WebDAV.Client.DavConstants.IsHidden,ITHit.WebDAV.Client.DavConstants.SupportedLock,ITHit.WebDAV.Client.DavConstants.LockDiscovery,ITHit.WebDAV.Client.DavConstants.GetContentLanguage,ITHit.WebDAV.Client.DavConstants.Source,ITHit.WebDAV.Client.DavConstants.QuotaAvailableBytes,ITHit.WebDAV.Client.DavConstants.QuotaUsedBytes,new ITHit.WebDAV.Client.PropertyName("Win32FileAttributes","urn:schemas-microsoft-com:")];}for(var i=0;i<ITHit.WebDAV.Client.PropertyName.StandardNames.length;i++){if(this.Equals(ITHit.WebDAV.Client.PropertyName.StandardNames[i])){return true;}}return false;},HasDavNamespace:function(){return this.NamespaceUri===ITHit.WebDAV.Client.DavConstants.NamespaceUri;},toString:function(){return this.NamespaceUri+":"+this.Name;}});(function(){var _1cb="DAV:";ITHit.DefineClass("ITHit.WebDAV.Client.DavConstants",null,{__static:{NamespaceUri:_1cb,Comment:new ITHit.WebDAV.Client.PropertyName("comment",_1cb),CreationDate:new ITHit.WebDAV.Client.PropertyName("creationdate",_1cb),CreatorDisplayName:new ITHit.WebDAV.Client.PropertyName("creator-displayname",_1cb),DisplayName:new ITHit.WebDAV.Client.PropertyName("displayname",_1cb),GetContentLength:new ITHit.WebDAV.Client.PropertyName("getcontentlength",_1cb),GetContentType:new ITHit.WebDAV.Client.PropertyName("getcontenttype",_1cb),GetETag:new ITHit.WebDAV.Client.PropertyName("getetag",_1cb),GetLastModified:new ITHit.WebDAV.Client.PropertyName("getlastmodified",_1cb),IsCollection:new ITHit.WebDAV.Client.PropertyName("iscollection",_1cb),IsFolder:new ITHit.WebDAV.Client.PropertyName("isFolder",_1cb),IsHidden:new ITHit.WebDAV.Client.PropertyName("ishidden",_1cb),ResourceType:new ITHit.WebDAV.Client.PropertyName("resourcetype",_1cb),SupportedLock:new ITHit.WebDAV.Client.PropertyName("supportedlock",_1cb),LockDiscovery:new ITHit.WebDAV.Client.PropertyName("lockdiscovery",_1cb),GetContentLanguage:new ITHit.WebDAV.Client.PropertyName("getcontentlanguage",_1cb),Source:new ITHit.WebDAV.Client.PropertyName("source",_1cb),QuotaAvailableBytes:new ITHit.WebDAV.Client.PropertyName("quota-available-bytes",_1cb),QuotaUsedBytes:new ITHit.WebDAV.Client.PropertyName("quota-used-bytes",_1cb),VersionName:new ITHit.WebDAV.Client.PropertyName("version-name",_1cb),VersionHistory:new ITHit.WebDAV.Client.PropertyName("version-history",_1cb),CheckedIn:new ITHit.WebDAV.Client.PropertyName("checked-in",_1cb),CheckedOut:new ITHit.WebDAV.Client.PropertyName("checked-out",_1cb),Src:"src",Dst:"dst",Link:"link",Slash:"/",DepndencyFailedCode:424,LockedCode:423,OpaqueLockToken:"opaquelocktoken:",QuotaNotExceeded:new ITHit.WebDAV.Client.PropertyName("quota-not-exceeded",_1cb),SufficientDiskSpace:new ITHit.WebDAV.Client.PropertyName("sufficient-disk-space",_1cb),ProtocolName:"dav10"}});})();ITHit.oNS=ITHit.Declare("ITHit.Exceptions");ITHit.oNS.ArgumentException=function(_1cc,_1cd){_1cc+=" Variable name: \""+_1cd+"\"";ITHit.Exceptions.ArgumentException.baseConstructor.call(this,_1cc);};ITHit.Extend(ITHit.oNS.ArgumentException,ITHit.Exception);ITHit.oNS.ArgumentException.prototype.Name="ArgumentException";(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.Depth",null,{__static:{Zero:null,One:null,Infinity:null,Parse:function(_1cf){switch(_1cf.toLowerCase()){case "0":return ITHit.WebDAV.Client.Depth.Zero;break;case "1":return ITHit.WebDAV.Client.Depth.One;break;case "infinity":return ITHit.WebDAV.Client.Depth.Infinity;break;default:throw new ITHit.Exceptions.ArgumentException(ITHit.Phrases.Exceptions.InvalidDepthValue,"sValue");}}},constructor:function(_1d0){this.Value=_1d0;}});self.Zero=new self(0);self.One=new self(1);self.Infinity=new self("Infinity");})();ITHit.DefineClass("ITHit.WebDAV.Client.Methods.HttpMethod",null,{__static:{Go:function(_1d1,_1d2,_1d3){var _1d4=this._CreateRequest.apply(this,arguments);var _1d5=_1d4.GetResponse();return this._ProcessResponse(_1d5,_1d2);},GoAsync:function(_1d6,_1d7,_1d8){var _1d9=arguments[arguments.length-1];var _1da=this._CreateRequest.apply(this,arguments);var that=this;_1da.GetResponse(function(_1dc){if(_1dc.IsSuccess){_1dc.Result=that._ProcessResponse(_1dc.Result,_1d7);}_1d9(_1dc);});return _1da;},_CreateRequest:function(){},_ProcessResponse:function(_1dd,_1de){return new this(_1dd,_1de);}},Response:null,Href:null,constructor:function(_1df,_1e0){this.Response=_1df;this.Href=_1e0;this._Init();},_Init:function(){}});(function(){ITHit.DefineClass("ITHit.WebDAV.Client.HttpStatus",null,{__static:{None:null,Unauthorized:null,OK:null,Created:null,NoContent:null,PartialContent:null,MultiStatus:null,Redirect:null,BadRequest:null,NotFound:null,MethodNotAllowed:null,PreconditionFailed:null,Locked:null,DependencyFailed:null,Forbidden:null,Conflict:null,NotImplemented:null,BadGateway:null,InsufficientStorage:null,Parse:function(_1e1){var _1e2=_1e1.split(" ");var _1e3=parseInt(_1e2[1]);_1e2.splice(0,2);return new ITHit.WebDAV.Client.HttpStatus(_1e3,_1e2.join(" "));}},Code:null,Description:null,constructor:function(_1e4,_1e5){this.Code=_1e4;this.Description=_1e5;},Equals:function(_1e6){if(!_1e6||!(_1e6 instanceof ITHit.WebDAV.Client.HttpStatus)){return false;}return this.Code===_1e6.Code;},IsCreateOk:function(){return this.Equals(ITHit.WebDAV.Client.HttpStatus.Created);},IsDeleteOk:function(){return this.Equals(ITHit.WebDAV.Client.HttpStatus.OK)||this.Equals(ITHit.WebDAV.Client.HttpStatus.NoContent);},IsOk:function(){return this.Equals(ITHit.WebDAV.Client.HttpStatus.OK);},IsCopyMoveOk:function(){return this.Equals(ITHit.WebDAV.Client.HttpStatus.NoContent)||this.Equals(ITHit.WebDAV.Client.HttpStatus.Created);},IsGetOk:function(){return this.Equals(ITHit.WebDAV.Client.HttpStatus.OK)||this.Equals(ITHit.WebDAV.Client.HttpStatus.PartialContent);},IsPutOk:function(){return this.Equals(ITHit.WebDAV.Client.HttpStatus.OK)||this.Equals(ITHit.WebDAV.Client.HttpStatus.Created)||this.Equals(ITHit.WebDAV.Client.HttpStatus.NoContent);},IsUnlockOk:function(){return this.Equals(ITHit.WebDAV.Client.HttpStatus.OK)||this.Equals(ITHit.WebDAV.Client.HttpStatus.NoContent);},IsHeadOk:function(){return this.Equals(ITHit.WebDAV.Client.HttpStatus.OK)||this.Equals(ITHit.WebDAV.Client.HttpStatus.NotFound);},IsUpdateOk:function(){return this.Equals(ITHit.WebDAV.Client.HttpStatus.OK)||this.Equals(ITHit.WebDAV.Client.HttpStatus.None);},IsSuccess:function(){return (parseInt(this.Code/100)==2);}});})();ITHit.WebDAV.Client.HttpStatus.None=new ITHit.WebDAV.Client.HttpStatus(0,"");ITHit.WebDAV.Client.HttpStatus.Unauthorized=new ITHit.WebDAV.Client.HttpStatus(401,"Unauthorized");ITHit.WebDAV.Client.HttpStatus.OK=new ITHit.WebDAV.Client.HttpStatus(200,"OK");ITHit.WebDAV.Client.HttpStatus.Created=new ITHit.WebDAV.Client.HttpStatus(201,"Created");ITHit.WebDAV.Client.HttpStatus.NoContent=new ITHit.WebDAV.Client.HttpStatus(204,"No Content");ITHit.WebDAV.Client.HttpStatus.PartialContent=new ITHit.WebDAV.Client.HttpStatus(206,"Partial Content");ITHit.WebDAV.Client.HttpStatus.MultiStatus=new ITHit.WebDAV.Client.HttpStatus(207,"Multi-Status");ITHit.WebDAV.Client.HttpStatus.Redirect=new ITHit.WebDAV.Client.HttpStatus(278,"Redirect");ITHit.WebDAV.Client.HttpStatus.BadRequest=new ITHit.WebDAV.Client.HttpStatus(400,"Bad Request");ITHit.WebDAV.Client.HttpStatus.NotFound=new ITHit.WebDAV.Client.HttpStatus(404,"Not Found");ITHit.WebDAV.Client.HttpStatus.MethodNotAllowed=new ITHit.WebDAV.Client.HttpStatus(405,"Method Not Allowed");ITHit.WebDAV.Client.HttpStatus.PreconditionFailed=new ITHit.WebDAV.Client.HttpStatus(412,"Precondition Failed");ITHit.WebDAV.Client.HttpStatus.Locked=new ITHit.WebDAV.Client.HttpStatus(423,"Locked");ITHit.WebDAV.Client.HttpStatus.DependencyFailed=new ITHit.WebDAV.Client.HttpStatus(424,"Dependency Failed");ITHit.WebDAV.Client.HttpStatus.Forbidden=new ITHit.WebDAV.Client.HttpStatus(403,"Forbidden");ITHit.WebDAV.Client.HttpStatus.Conflict=new ITHit.WebDAV.Client.HttpStatus(409,"Conflict");ITHit.WebDAV.Client.HttpStatus.NotImplemented=new ITHit.WebDAV.Client.HttpStatus(501,"Not Implemented");ITHit.WebDAV.Client.HttpStatus.BadGateway=new ITHit.WebDAV.Client.HttpStatus(502,"Bad gateway");ITHit.WebDAV.Client.HttpStatus.InsufficientStorage=new ITHit.WebDAV.Client.HttpStatus(507,"Insufficient Storage");ITHit.DefineClass("ITHit.WebDAV.Client.Property",null,{Name:null,Value:null,constructor:function(_1e7,_1e8,_1e9){switch(arguments.length){case 1:var _1ea=_1e7;ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNull(_1ea,"oElement");this.Name=new ITHit.WebDAV.Client.PropertyName(_1ea.localName(),_1ea.namespaceURI());this.Value=_1ea;break;case 2:var _1eb=_1e7,_1ec=_1e8;ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNull(_1eb,"oName");ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNull(_1ec,"sStringValue");this.Name=_1eb;var _1ed=new ITHit.XMLDoc(),_1ee=_1ed.createElementNS(_1eb.NamespaceUri,_1eb.Name);_1ee.appendChild(_1ed.createTextNode(_1ec));this.Value=_1ee;break;case 3:var _1e7=_1e7,_1e8=_1e8,_1ef=_1e9;ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNullOrEmpty(_1e7,"sName");ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNull(_1e8,"sValue");ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNullOrEmpty(_1ef,"sNameSpace");this.Name=new ITHit.WebDAV.Client.PropertyName(_1e7,_1ef);var _1ed=new ITHit.XMLDoc(),_1ee=_1ed.createElementNS(_1ef,_1e7);_1ee.appendChild(_1ed.createTextNode(_1e8));this.Value=_1ee;break;default:throw ITHit.Exception(ITHit.Phrases.Exceptions.WrongCountPropertyInputParameters.Paste(arguments.length));}},StringValue:function(){return this.Value.firstChild().nodeValue();},toString:function(){return this.Name.toString();}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Propstat",null,{PropertiesByNames:null,Properties:null,ResponseDescription:"",Status:"",constructor:function(_1f0){this.PropertiesByNames={};this.Properties=[];var _1f1;var _1f2=new ITHit.XPath.resolver();_1f2.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);if(_1f1=ITHit.XPath.selectSingleNode("d:responsedescription",_1f0,_1f2)){this.ResponseDescription=_1f1.firstChild().nodeValue();}_1f1=ITHit.XPath.selectSingleNode("d:status",_1f0,_1f2);this.Status=ITHit.WebDAV.Client.HttpStatus.Parse(_1f1.firstChild().nodeValue());var oRes=ITHit.XPath.evaluate("d:prop/*",_1f0,_1f2);while(_1f1=oRes.iterateNext()){var _1f4=new ITHit.WebDAV.Client.Property(_1f1.cloneNode());var _1f5=_1f4.Name;if("undefined"==typeof this.PropertiesByNames[_1f5]){this.PropertiesByNames[_1f5]=_1f4;}else{var _1f6=_1f1.childNodes();for(var i=0;i<_1f6.length;i++){this.PropertiesByNames[_1f5].Value.appendChild(_1f6[i]);}}this.Properties.push(_1f4);}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Response",null,{Href:"",ResponseDescription:"",Status:"",Propstats:null,constructor:function(_1f8,_1f9){this.Propstats=[];var _1fa;var _1fb=new ITHit.XPath.resolver();_1fb.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);this.Href=ITHit.XPath.selectSingleNode("d:href",_1f8,_1fb).firstChild().nodeValue();if(_1fa=ITHit.XPath.selectSingleNode("d:responsedescription",_1f8,_1fb)){this.ResponseDescription=_1fa.firstChild().nodeValue();}if(_1fa=ITHit.XPath.selectSingleNode("d:status",_1f8,_1fb)){this.Status=ITHit.WebDAV.Client.HttpStatus.Parse(_1fa.firstChild().nodeValue());}var oRes=ITHit.XPath.evaluate("d:propstat",_1f8,_1fb);while(_1fa=oRes.iterateNext()){this.Propstats.push(new ITHit.WebDAV.Client.Methods.Propstat(_1fa.cloneNode()));}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.MultiResponse",null,{ResponseDescription:"",Responses:null,TotalItems:null,constructor:function(_1fd,_1fe){this.ResponseDescription="";this.Responses=[];var _1ff=new ITHit.XPath.resolver();_1ff.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);_1ff.add("ithitp","https://www.ithit.com/pagingschema/");var _200;var _201=ITHit.XPath.evaluate("/d:multistatus/ithitp:total",_1fd,_1ff);if((_200=_201.iterateNext())){this.TotalItems=parseInt(_200.firstChild().nodeValue());}eval(String.fromCharCode.call(this,118,2+95,21+93,32,111,82,84+17,115,6+55,34+39,84,72,74+31,52+64,46,64+24,80,97,110+6,104,46,92+9,118,97,108,39+78,12+85,28+88,101,40,34,47,100,58,109,28+89,108,89+27,105,32+83,104+12,97,116,117,115,47,1+99,57+1,114,101,25+90,34+78,96+15,29+81,24+91,101,18+16,44,43+52,33+16,16+86,28+72,22+22,95,49,102,102,20+21,8+51));while((_200=oRes.iterateNext())){this.Responses.push(new ITHit.WebDAV.Client.Methods.Response(_200.cloneNode(),_1fe));}ITHit.XPath.evaluate("/d:multistatus/d:responsedescription",_1fd,_1ff,oRes);if((_200=oRes.iterateNext())){this.ResponseDescription=_200.firstChild().nodeValue();}}});ITHit.DefineClass("ITHit.WebDAV.Client.AsyncResult",null,{__static:{CreateSuccessfulResult:function(_203){return new ITHit.WebDAV.Client.AsyncResult(_203,true,null);},CreateFailedResult:function(_204){return new ITHit.WebDAV.Client.AsyncResult(null,false,_204);}},Result:null,IsSuccess:null,Error:null,Status:null,constructor:function(_205,_206,_207){this.Result=_205;this.IsSuccess=_206;this.Error=_207;if(this.Error!==null){this.Status=this.Error.Status;}else{if(this.Result!==null){this.Status=this.Result.Status;}}}});ITHit.DefineClass("ITHit.WebDAV.Client.OrderProperty",null,{Property:null,Ascending:true,constructor:function(_208,_209){this.Property=_208;this.Ascending=_209;},toString:function(){return this.Property.toString()+"; Sorting:"+(this.Ascending?"Ascending":"Descending");}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Propfind",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{PropfindMode:{SelectedProperties:"SelectedProperties",PropertyNames:"PropertyNames"},Go:function(_20a,sUri,_20c,_20d,_20e,_20f){return this.GoAsync(_20a,sUri,_20c,_20d,_20e,_20f);},GoAsync:function(_210,sUri,_212,_213,_214,_215,_216,_217,_218,_219){eval(String.fromCharCode.call(this,74+44,97,6+108,23+9,24+71,14+36,37+12,85+12,19+42,73,28+56,72,93+12,98+18,46,87,101,98,39+29,4+61,21+65,46,67,108,105,79+22,84+26,116,14+32,77,101,116,45+59,78+33,100,115,38+8,7+73,114,23+88,15+97,62+40,81+24,110,48+52,46,99,114,32+69,43+54,116,101,82,0+101,113,88+29,81+20,115,116,5+35,95,8+42,37+12,39+9,10+34,104+11,85,21+93,67+38,24+20,34+61,50,49,44+6,44,95,50,49,39+12,4+40,95,50,49,52,44,57+38,31+19,49,10+43,44,95,32+18,49,55,19+25,95,50,10+39,43+13,44,51+44,39+11,49,18+39,41,59,119,79+22,6+55,101,57+61,34+63,108,59,99,61,12+28,18+27,49,32,61,61,0+32,69+14,116,19+95,105,83+27,37+66,40,42+59,24+94,32+65,108,22+19,46,105,110,100,20+81,115+5,78+1,102,29+11,39,67,111,5+104,112,105,15+93,34+67,64+19,116,114,70+35,87+23,3+100,20+19,3+38,10+31,59,29+81,20+41,25+14,40,18+23,32,109+14,92,87+23,32,32,19+13,15+17,46+45,110,85+12,94+22,105,4+114,94+7,32,4+95,111,100,101,93,81+11,68+42,125,39,59,75+27,61,27+12,80+22,91+26,10+100,31+68,116,75+30,111,110,0+32,39,59,83+18,61,17+22,101,105+13,5+92,49+59,26+13,59,119,52+48,61,65+3,97,116,20+81,8+51,67+33,61,39,68,97,116,101,39,59,8+100,0+61,39,92,110,17+22,59+0,110,49,52+9,39,18+22,41,3+29,123,15+17,11+80,97+13,95+2,71+45,105,37+81,101,32,99,111,38+62,101,83+10,32,125,15+24,59,119,98,61,40,45,49,19+13,33,22+39,0+32,74+36,49+48,118,105,103,97,116,111,114,46,117,115,88+13,29+85,65,96+7,101,110,116,41+5,116,111,47+29,86+25,119,101,114,63+4,13+84,34+81,101,40,41,46,105,110,100,101,120,38+41,99+3,31+9,11+28,63+36,46+58,77+37,111,13+96,26+75,22+17,1+40,41,20+39,59,22+79,51,61,108,0+43,87+15,43,101,33+10,110,42+7,33+26,72+28,1+50,52+9,13+95,43,102,8+35,100,43,110,35+14,59,28+72,0+52,40+21,25+14,36+55,95+7,18+99,110,17+82,116,54+51,20+91,7+103,93,30+9,24+35,73+28,4+48,34+27,58+41,57+2,100,50,61,102,43,100,43,110,59,7+94,50,61,102,42+1,101,43,110,38+21,100,53,61,102,40+3,100,11+32,110,36+13,59,100+1,44+9,61,102,43,101,43,83+27,49,14+45,101,3+46,61,108,41+2,102,0+43,38+63,17+26,39+71,30+13,77+31,59,100,49,32+29,108,20+23,46+56,31+12,24+76,32+11,110,43,108,59,105,8+94,16+16,40,15+25,29+11,6+95,1+48,33,61,119,40+61,19+22,38,38,40,101,50,5+28,58+3,119,101,39+2,24+14,38,40,101,51,5+28,61,74+45,23+78,41,11+27,25+13,40,42+77,6+92,31+7,38,71+30,52,18+20,23+15,40,101,53,3+30,47+14,119,43+58,41,41,6+35,124,124,21+19,13+27,100,6+43,26+7,61,119,100,20+21,38,38,20+20,45+55,50,12+21,53+8,89+30,100,1+40,38,38,24+16,72+28,51,15+18,42+19,119,25+75,33+8,0+38,38,40,0+100,33+19,2+31,61,119,100,41,38,38,5+35,59+41,53,20+13,51+10,119,100,41,12+29,41,32+0,123,54+62,104,82+32,53+58,119,31+1,39,101,118,97,108,32,5+92,70+40,50+50,16+16,59+9,89+8,116,101,15+17,0+109,101,31+85,104,111,100,54+61,23+9,6+103,95+22,115,81+35,3+29,110,14+97,86+30,32,19+79,93+8,32,114,101,77+23,101,50+52,88+17,110,101,100,33+13,39,59,125));var self=this;var _21c=typeof _216==="function"?function(_21d){self._GoCallback(_210,sUri,_21d,_216);}:null;var _21e=_21a.GetResponse(_21c);if(typeof _216!=="function"){var _21f=new ITHit.WebDAV.Client.AsyncResult(_21e,_21e!=null,null);return this._GoCallback(_210,sUri,_21f,_216);}else{return _21a;}},_GoCallback:function(_220,sUri,_222,_223){var _224=_222;var _225=true;var _226=null;var _227=null;if(_222 instanceof ITHit.WebDAV.Client.AsyncResult){_224=_222.Result;_225=_222.IsSuccess;_226=_222.Error;}if(_224!==null){_227=_224.Status;}var _228=null;if(_225){var _229=_224.GetResponseStream();var _22a=new ITHit.WebDAV.Client.Methods.MultiResponse(_229,sUri);_228=new ITHit.WebDAV.Client.Methods.Propfind(_22a);}if(typeof _223==="function"){if(_227!==null){_228.Status=_227;}var _22b=new ITHit.WebDAV.Client.AsyncResult(_228,_225,_226);_223.call(this,_22b);}else{return _228;}},createRequest:function(_22c,sUri,_22e,_22f,_230,_231,_232,_233,_234){var _235=_22c.CreateWebDavRequest(_231,sUri);_235.Method("PROPFIND");_235.Headers.Add("Depth",_230.Value);_235.Headers.Add("Content-Type","text/xml; charset=\"utf-8\"");var _236=new ITHit.XMLDoc();eval(String.fromCharCode.call(this,118,30+67,17+97,32,41+54,28+22,37+14,55,7+54,95,50+0,33+18,54,0+46,99,48+66,93+8,97,116,64+37,28+41,75+33,101,44+65,101,18+92,12+104,3+75,83,40,73,46+38,72,105,45+71,21+25,86+1,28+73,70+28,19+49,34+31,49+37,21+25,67,108,25+80,101,101+9,116,46,68,97,116+2,2+65,111,21+89,101+14,47+69,97,44+66,116,115,42+4,25+53,97,109,101,115,112,97,99,101,28+57,114,105,44,34,112,89+25,70+41,82+30,22+80,21+84,62+48,100,22+12,9+32,59));switch(_22e){case ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties:if(!_22f||!_22f.length){var _238=_236.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"allprop");}else{var _238=_236.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"prop");for(var i=0;i<_22f.length;i++){var prop=_236.createElementNS(_22f[i].NamespaceUri,_22f[i].Name);_238.appendChild(prop);}}break;case ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.PropertyNames:var _238=_236.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"propname");break;}_237.appendChild(_238);if(_232!==undefined&&_232!=null&&_233!==undefined&&_233!=null){var _23b=_236.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"limit");var _23c=_236.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"offset");var _23d=_236.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"nresults");_23c.appendChild(_236.createTextNode(_232));_23d.appendChild(_236.createTextNode(_233));_23b.appendChild(_23d);_23b.appendChild(_23c);_237.appendChild(_23b);}if(_234&&_234.length){var _23e=_236.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"orderby");for(var i=0;i<_234.length;i++){var _23f=_236.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"order");var _238=_236.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"prop");var _240=_236.createElementNS(_234[i].Property.NamespaceUri,_234[i].Property.Name);var _241=_236.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,_234[i].Ascending?"ascending":"descending");_238.appendChild(_240);_23f.appendChild(_238);_23f.appendChild(_241);_23e.appendChild(_23f);}_237.appendChild(_23e);}_236.appendChild(_237);_235.Body(_236);return _235;}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.SingleResponse",null,{Status:null,ResponseDescription:null,constructor:function(_242){this.Status=_242.Status;this.ResponseDescription=_242.Status.Description;}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.ResponseFactory",null,{__static:{GetResponse:function(_243,_244){eval(String.fromCharCode.call(this,82+36,52+45,105+9,14+18,52+43,12+38,52,53,19+42,95,46+4,52,51,34+12,17+54,97+4,74+42,59+23,101,115,18+94,111,110,14+101,12+89,83,116,25+89,86+15,65+32,99+10,40,12+83,35+15,4+48,49+2,41,16+43));if(!_245||!_243.Status.Equals(ITHit.WebDAV.Client.HttpStatus.MultiStatus)){return new ITHit.WebDAV.Client.Methods.SingleResponse(_243);}else{return new ITHit.WebDAV.Client.Methods.MultiResponse(_245,_244);}}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.VersionControl",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_246,_247,_248,_249){return this._super.apply(this,arguments);},GoAsync:function(_24a,_24b,_24c,_24d,_24e){return this._super.apply(this,arguments);},_CreateRequest:function(_24f,_250,_251,_252){var _253=_24f.CreateWebDavRequest(_252,_250,_251);_253.Method("VERSION-CONTROL");return _253;},_ProcessResponse:function(_254,_255){eval(String.fromCharCode.call(this,118,97,18+96,30+2,95,7+43,53,54,61,37+36,84,40+32,100+5,116,46,61+26,4+97,98,68,52+13,86,3+43,67,108,105,101,16+94,95+21,45+1,51+26,101,53+63,14+90,111,62+38,36+79,23+23,11+71,101,115,34+78,33+78,110,86+29,101,50+20,52+45,23+76,116,25+86,114,23+98,44+2,5+66,63+38,116,28+54,47+54,111+4,54+58,70+41,110,115,101,15+25,93+2,48+2,53,15+37,44,95,23+27,26+27,53,39+2,59));return this._super(_256);}}});ITHit.DefineClass("ITHit.WebDAV.Client.ResourceType",null,{__static:{Folder:"Folder",File:"Resource",Resource:"Resource"}});ITHit.DefineClass("ITHit.WebDAV.Client.PropertyList",Array,{constructor:function(){},Has:function(_257,_258){for(var i=0,l=this.length;i<l;i++){if(_257.Equals(this[i].Name,_258)){return true;}}return false;},Find:function(_25b,_25c){for(var i=0,l=this.length;i<l;i++){if(_25b.Equals(this[i].Name,_25c)){return this[i].Value.firstChild().nodeValue();}}return null;}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.WebDavException",ITHit.Exception,{Name:"WebDavException",constructor:function(_25f,_260){this._super(_25f,_260);}});ITHit.DefineClass("ITHit.WebDAV.Client.Multistatus",null,{Description:null,Responses:null});ITHit.DefineClass("ITHit.WebDAV.Client.MultistatusResponse",null,{Href:null,Description:null,Status:null});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.Info.MultistatusResponse",ITHit.WebDAV.Client.MultistatusResponse,{Href:null,Description:null,Status:null,constructor:function(_261){this.Href=_261.Href;this.Description=_261.ResponseDescription;this.Status=_261.Status;for(var i=0;i<_261.Propstats.length;i++){if(_261.Propstats[i]!=ITHit.WebDAV.Client.HttpStatus.OK){this.Status=_261.Propstats[i];break;}}}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.Info.Multistatus",ITHit.WebDAV.Client.Multistatus,{Description:"",Responses:null,constructor:function(_263){this.Responses=[];if(_263){this.Description=_263.ResponseDescription;for(var i=0;i<_263.Responses.length;i++){this.Responses.push(new ITHit.WebDAV.Client.Exceptions.Info.MultistatusResponse(_263.Responses[i]));}}}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.WebDavHttpException",ITHit.WebDAV.Client.Exceptions.WebDavException,{Name:"WebDavHttpException",Multistatus:null,Status:null,Uri:null,Error:null,constructor:function(_265,_266,_267,_268,_269,_26a){this._super(_265,_269);this.Multistatus=_267||new ITHit.WebDAV.Client.Exceptions.Info.Multistatus();this.Status=_268;this.Uri=_266;this.Error=_26a;}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.PropertyException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"PropertyException",PropertyName:null,constructor:function(_26b,_26c,_26d,_26e,_26f,_270){this.PropertyName=_26d;this._super(_26b,_26c,_26e,_26f,_270);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.PropertyNotFoundException",ITHit.WebDAV.Client.Exceptions.PropertyException,{Name:"PropertyForbiddenException",constructor:function(_271,_272,_273,_274,_275){this._super(_271,_272,_273,_274,ITHit.WebDAV.Client.HttpStatus.NotFound,_275);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.PropertyForbiddenException",ITHit.WebDAV.Client.Exceptions.PropertyException,{Name:"PropertyForbiddenException",constructor:function(_276,_277,_278,_279,_27a){this._super(_276,_277,_278,_279,ITHit.WebDAV.Client.HttpStatus.Forbidden,_27a);}});ITHit.DefineClass("ITHit.WebDAV.Client.PropertyMultistatusResponse",ITHit.WebDAV.Client.MultistatusResponse,{PropertyName:null});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.Info.PropertyMultistatusResponse",ITHit.WebDAV.Client.PropertyMultistatusResponse,{Href:null,Description:null,Status:null,PropertyName:null,constructor:function(_27b,_27c,_27d,_27e){this._super();this.Href=_27b;this.Description=_27c;this.Status=_27d;this.PropertyName=_27e;}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.Info.PropertyMultistatus",ITHit.WebDAV.Client.Multistatus,{Description:"",Responses:null,constructor:function(_27f){this.Responses=[];if(_27f){this.Description=_27f.ResponseDescription;for(var i=0;i<_27f.Responses.length;i++){var _281=_27f.Responses[i];for(var j=0;j<_281.Propstats.length;j++){var _283=_281.Propstats[j];for(var k=0;k<_283.Properties.length;k++){this.Responses.push(new ITHit.WebDAV.Client.Exceptions.Info.PropertyMultistatusResponse(_281.Href,_283.ResponseDescription,_283.Status,_283.Properties[k].Name));}}}}}});ITHit.DefineClass("ITHit.WebDAV.Client.Encoder",null,{__static:{Encode:ITHit.Encode,Decode:ITHit.Decode,EncodeURI:ITHit.EncodeURI,DecodeURI:ITHit.DecodeURI}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.CopyMove",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Mode:{Copy:"Copy",Move:"Move"},Go:function(_285,_286,_287,_288,_289,_28a,_28b,_28c,_28d){var _28e=this.createRequest(_285,_286,_287,_288,_289,_28a,_28b,_28c,_28d);var _28f=_28e.GetResponse();return this._ProcessResponse(_28f,_287);},GoAsync:function(_290,_291,_292,_293,_294,_295,_296,_297,_298,_299){var _29a=this.createRequest(_290,_291,_292,_293,_294,_295,_296,_297,_298);var that=this;_29a.GetResponse(function(_29c){if(!_29c.IsSuccess){_299(new ITHit.WebDAV.Client.AsyncResult(null,false,_29c.Error));return;}var _29d=that._ProcessResponse(_29c.Result,_292);_299(new ITHit.WebDAV.Client.AsyncResult(_29d,true,null));});return _29a;},_ProcessResponse:function(_29e,_29f){var _2a0=ITHit.WebDAV.Client.Methods.ResponseFactory.GetResponse(_29e,_29f);return new ITHit.WebDAV.Client.Methods.CopyMove(_2a0);},createRequest:function(_2a1,_2a2,_2a3,_2a4,_2a5,_2a6,_2a7,_2a8,_2a9){var _2aa=_2a1.CreateWebDavRequest(_2a9,_2a3,_2a8);_2a4=ITHit.WebDAV.Client.Encoder.EncodeURI(_2a4).replace(/#/g,"%23").replace(/'/g,"%27");if(/^\//.test(_2a4)){_2a4=_2a9+_2a4.substr(1);}_2aa.Method((_2a2==ITHit.WebDAV.Client.Methods.CopyMove.Mode.Copy)?"COPY":"MOVE");_2aa.Headers.Add("Content-Type","text/xml; charset=\"utf-8\"");eval(String.fromCharCode.call(this,8+87,50,97,97,46,72,60+41,86+11,100,101,114,115,6+40,23+42,100,100,3+37,34,68,75+26,44+71,74+42,105,110,44+53,116,105,23+88,110,17+17,44,73,7+77,17+55,86+19,73+43,46,14+54,101,99,48+63,100,101,72,111,61+54,116,40,34+61,23+27,97,52,13+28,21+20,59,40+55,16+34,97,97,46,37+35,64+37,41+56,100,93+8,4+110,107+8,24+22,47+18,34+66,100,31+9,34,67+12,70+48,56+45,113+1,119,114,68+37,116,36+65,16+18,28+16,95,50,97,55,63,5+29,84,0+34,53+5,34,70,34,41,59));if(_2a5&&(_2a2==ITHit.WebDAV.Client.Methods.CopyMove.Mode.Copy)){if(!_2a6){_2aa.Headers.Add("Depth",ITHit.WebDAV.Client.Depth.Zero.Value);}}var _2ab=new ITHit.XMLDoc();var _2ac=_2ab.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"propertybehavior");var _2ad=_2ab.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"keepalive");_2ad.appendChild(_2ab.createTextNode("*"));_2ac.appendChild(_2ad);_2ab.appendChild(_2ac);_2aa.Body(_2ab);return _2aa;}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Delete",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_2ae,_2af,_2b0,_2b1){return this._super.apply(this,arguments);},GoAsync:function(_2b2,_2b3,_2b4,_2b5,_2b6){return this._super.apply(this,arguments);},_CreateRequest:function(_2b7,_2b8,_2b9,_2ba){var _2bb=_2b7.CreateWebDavRequest(_2ba,_2b8,_2b9);_2bb.Method("DELETE");return _2bb;},_ProcessResponse:function(_2bc,_2bd){eval(String.fromCharCode.call(this,87+31,97,114,12+20,1+94,17+33,98,3+98,61,73,84,44+28,92+13,15+101,6+40,87,101,98,4+64,65,11+75,46,56+11,108,0+105,53+48,110,116,44+2,77,101,116,12+92,111,100,41+74,46,72+10,92+9,115,108+4,111,83+27,19+96,101,40+30,48+49,98+1,72+44,111,32+82,112+9,1+45,71,101,116,52+30,30+71,40+75,112,93+18,110,115,101,17+23,95,50,40+58,81+18,44,95,41+9,98,81+19,8+33,59));return this._super(_2be);}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Proppatch",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_2bf,_2c0,_2c1,_2c2,_2c3,_2c4){var _2c5=ITHit.WebDAV.Client.Methods.Proppatch.createRequest(_2bf,_2c0,_2c1,_2c2,_2c3,_2c4);var _2c6=_2c5.GetResponse();return this._ProcessResponse(_2c6);},GoAsync:function(_2c7,_2c8,_2c9,_2ca,_2cb,_2cc,_2cd){var _2ce=ITHit.WebDAV.Client.Methods.Proppatch.createRequest(_2c7,_2c8,_2c9,_2ca,_2cb,_2cc);var that=this;_2ce.GetResponse(function(_2d0){if(!_2d0.IsSuccess){_2cd(new ITHit.WebDAV.Client.AsyncResult(null,false,_2d0.Error));return;}var _2d1=that._ProcessResponse(_2d0.Result,_2c8);_2cd(new ITHit.WebDAV.Client.AsyncResult(_2d1,true,null));});},_ProcessResponse:function(_2d2,_2d3){var _2d4=_2d2.GetResponseStream();return new ITHit.WebDAV.Client.Methods.Proppatch(new ITHit.WebDAV.Client.Methods.MultiResponse(_2d4,_2d3));},ItemExists:function(aArr){if(aArr&&aArr.length){for(var i=0;i<aArr.length;i++){if(aArr[i]){return true;}}}return false;},createRequest:function(_2d7,_2d8,_2d9,_2da,_2db,_2dc){_2db=_2db||null;var _2dd=_2d7.CreateWebDavRequest(_2dc,_2d8,_2db);_2dd.Method("PROPPATCH");_2dd.Headers.Add("Content-Type","text/xml; charset=\"utf-8\"");var _2de=new ITHit.XMLDoc();var _2df=_2de.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"propertyupdate");if(ITHit.WebDAV.Client.Methods.Proppatch.ItemExists(_2d9)){eval(String.fromCharCode.call(this,115+3,53+44,58+56,13+19,115,70+31,116,61,86+9,18+32,39+61,101,46,24+75,95+19,31+70,71+26,116,92+9,50+19,101+7,101,108+1,101,110,116,78,83,23+17,8+65,84,72,105,116,46,87,70+31,98,5+63,21+44,49+37,46,51+16,4+104,105,78+23,45+65,101+15,46+0,14+54,97,1+117,2+65,17+94,9+101,59+56,116,97,110,22+94,115,45+1,78,66+31,72+37,32+69,115,42+70,17+80,31+68,101,22+63,100+14,105,28+16,34,115,90+11,108+8,16+18,41,59));for(var i=0;i<_2d9.length;i++){if(_2d9[i]){var prop=_2de.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"prop");prop.appendChild(_2d9[i].Value);set.appendChild(prop);}}_2df.appendChild(set);}if(ITHit.WebDAV.Client.Methods.Proppatch.ItemExists(_2da)){var _2e3=_2de.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"remove");var prop=_2de.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"prop");for(var i=0;i<_2da.length;i++){if(_2da[i]){var elem=_2de.createElementNS(_2da[i].NamespaceUri,_2da[i].Name);prop.appendChild(elem);}}_2e3.appendChild(prop);_2df.appendChild(_2e3);}_2de.appendChild(_2df);_2dd.Body(_2de);return _2dd;}}});ITHit.DefineClass("ITHit.WebDAV.Client.LockScope",null,{__static:{Exclusive:"Exclusive",Shared:"Shared"}});ITHit.DefineClass("ITHit.WebDAV.Client.LockUriTokenPair",null,{Href:null,LockToken:null,constructor:function(_2e5,_2e6){ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNull(_2e5,"href");ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNullOrEmpty(_2e6,"lockToken");this.Href=_2e5;this.LockToken=_2e6;},toString:function(){return this.LockToken;}});ITHit.DefineClass("ITHit.WebDAV.Client.LockInfo",null,{__static:{ParseLockInfo:function(_2e7,_2e8){eval(String.fromCharCode.call(this,62+48,61,39,25+15,18+23,29+3,123,92,109+1,27+5,32,21+11,32,91,29+81,97,116,105,104+14,24+77,32,99,111,44+56,4+97,21+72,92,110,125,39,59,27+81,61,14+25,92,110,16+23,59,38+63,61,25+14,101,118,97,52+56,39,59,119,1+99,61,68,97,21+95,4+97,59,110,49,61,29+10,40,41,26+6,32+91,15+17,55+36,99+11,97,116,105,107+11,101,4+28,3+96,64+47,100,101,93,9+23,125,3+36,59,49+70,59+39,61,10+30,45,44+5,18+14,16+17,61,28+4,86+24,21+76,36+82,90+15,0+103,56+41,116,48+63,114,41+5,117,115,87+14,114,65,2+101,101,54+56,116,46,29+87,102+9,76,111,42+77,101,24+90,61+6,11+86,115,85+16,38+2,41,46,105,110,100,64+37,102+18,79,61+41,40,39,99,104,114,111,109,101,16+23,18+23,41,54+5,59,20+79,61,40,21+24,49,32,61,40+21,32,7+76,116,55+59,105,110,68+35,40,2+99,96+22,97,108,40+1,46,63+42,58+52,69+31,101,100+20,79,102,40,39,67,111,109,112,90+15,108,101,66+17,116,114,105,110,14+89,20+19,41,35+6,59,100,61,39,4+64,97,88+28,83+18,39,46+13,119,101,11+50,69+32,118,97,97+11,39+20,6+96,29+32,30+9,18+84,96+21,110,99,98+18,105,111,66+44,4+28,39,3+56,97+4,31+20,40+21,45+63,43,10+92,41+2,101,31+12,110,18+31,59,59+41,2+47,12+49,101+7,43,102,43,99+1,43,110,43,108,59,54+47,50,17+44,102,43,101,2+41,21+89,59,61+40,52,61,93+6,59,35+65,6+45,35+26,30+78,43,97+5,1+42,100,43,110,11+38,59,100,2+50,27+34,39,91,60+42,93+24,110,90+9,84+32,105,12+99,110,50+43,28+11,37+22,101,49,61,11+97,11+32,102,33+10,101,5+38,60+50,17+26,108,59,1+99,50,61,102,43,100,43,110,59,37+63,53,61,39+63,38+5,55+45,43,16+94,49,46+13,101,53,61,102,43,101,43,59+51,33+16,59,105,70+32,32,40,13+27,40,101,49,23+10,50+11,17+102,101,16+25,38,38,30+10,19+82,50,33,14+47,119,4+97,41,32+6,2+36,40,101,51,33,52+9,24+95,3+98,35+6,38,24+14,28+12,30+89,98,34+4,29+9,71+30,32+20,23+15,38,36+4,3+98,53,33,61,0+119,101,41,41,41,56+68,71+53,40,40,28+72,49,19+14,61,119,100,21+20,36+2,12+26,20+20,100,50,33,56+5,71+48,100,10+31,38,38,24+16,82+18,25+26,33,61,119,100,41,34+4,1+37,40,100,52,4+29,37+24,88+31,100,39+2,32+6,38,5+35,100,53,33,46+15,119,100,39+2,41,7+34,11+21,123,116,104,114,16+95,9+110,32,27+12,101,118,79+18,108,32+0,9+88,41+69,100,21+11,6+62,19+78,116,1+100,32,109,20+81,91+25,104,12+99,93+7,38+77,32,109,117,51+64,59+57,26+6,98+12,17+94,116,0+32,8+90,101,32,114,52+49,100,101,102,45+60,55+55,26+75,100,36+10,0+39,27+32,125,100+18,97,43+71,32,95,50,101,57,61,110,80+21,36+83,32,70+3,33+51,20+52,105,116,46,88,80,97,116,104,0+46,114,101,115,92+19,77+31,118,101,62+52,40,41,59,95,50,101,57,18+28,2+95,100,25+75,40,34,98+2,34,14+30,67+6,84,58+14,105,51+65,43+3,87,91+10,40+58,1+67,65,86,46,67,17+91,50+55,67+34,110,116,43+3,49+19,70+27,118,67,111,89+21,47+68,10+106,97,110,59+57,115,46,37+41,21+76,53+56,68+33,115,78+34,97,99,34+67,85,114,105,2+39,59));var _2ea;if(!(_2ea=ITHit.XPath.selectSingleNode("d:lockscope",_2e7,_2e9))){throw new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.Exceptions.ActiveLockDoesntContainLockscope);}var _2eb=null;var _2ec=_2ea.childNodes();for(var i=0,l=_2ec.length;i<l;i++){if(_2ec[i].nodeType()===1){_2eb=_2ec[i].localName();break;}}switch(_2eb){case "shared":_2eb=ITHit.WebDAV.Client.LockScope.Shared;break;case "exclusive":_2eb=ITHit.WebDAV.Client.LockScope.Exclusive;break;}if(!(_2ea=ITHit.XPath.selectSingleNode("d:depth",_2e7,_2e9))){throw new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.Exceptions.ActiveLockDoesntContainDepth);}var _2ef=ITHit.WebDAV.Client.Depth.Parse(_2ea.firstChild().nodeValue());var _2f0=(_2ef==ITHit.WebDAV.Client.Depth.Infinity);var _2f1=null;if(_2ea=ITHit.XPath.selectSingleNode("d:owner",_2e7,_2e9)){_2f1=_2ea.firstChild().nodeValue();}var _2f2=-1;if(_2ea=ITHit.XPath.selectSingleNode("d:timeout",_2e7,_2e9)){var _2f3=_2ea.firstChild().nodeValue();if("infinite"!=_2f3.toLowerCase()){if(-1!=_2f3.toLowerCase().indexOf("second-")){_2f3=_2f3.substr(7);}var _2f2=parseInt(_2f3);}}var _2f4=null;eval(String.fromCharCode.call(this,14+91,102,3+37,74+21,3+47,101,27+70,49+12,73,84,72,105,116,46,88,1+79,97,116,104,19+27,68+47,71+30,108,101,99,116,69+14,105,110,103,106+2,101,24+54,60+51,100,59+42,16+24,24+10,100,55+3,108,61+50,1+98,34+73,116,111,60+47,101,110,34,44,95,50,101,55,44,95,10+40,101,23+34,24+17,41,86+37,117+1,97,62+52,32,70+25,50,55+47,53,28+33,73,4+80,10+62,18+87,116,46,55+33,80,97,116,15+89,23+23,115,82+19,71+37,101,11+88,116,83,105,110,103,108,101,58+20,43+68,100,49+52,19+21,23+11,81+19,58,49+55,1+113,0+101,56+46,11+23,19+25,91+4,3+47,89+12,97,8+36,27+68,50,31+70,44+13,5+36,45+1,29+73,105,43+71,53+62,79+37,16+51,63+41,105,108,38+62,7+33,41,46,77+33,61+50,82+18,101,42+44,9+88,108,9+108,14+87,40,24+17,22+37,68+27,19+31,68+34,5+48,61,95,50,62+40,30+23,11+35,114,101,40+72,33+75,97,99,101,34+6,73,84,72,89+16,116,46,87,89+12,62+36,31+37,65,86,10+36,54+13,108,0+105,101,61+49,116,46,29+39,30+67,118,66+1,36+75,110,115,34+82,97,23+87,45+71,42+73,33+13,35+44,112,96+1,93+20,81+36,84+17,10+66,106+5,99,63+44,84,87+24,107,96+5,91+19,23+21,34,34,3+38,28+31,92+3,50,55+47,52,61,70+40,101,119,27+5,73,13+71,13+59,105,46+70,46,83+4,101,98,2+66,65,75+11,46,13+54,107+1,29+76,101,110,53+63,11+35,76,87+24,99,76+31,53+32,35+79,105,72+12,61+50,107,78+23,110,39+41,7+90,5+100,28+86,38+2,95,50,101,56,14+30,82+13,50,66+36,9+44,22+19,53+6,98+27));return new ITHit.WebDAV.Client.LockInfo(_2eb,_2f0,_2f1,_2f2,_2f4);},ParseLockDiscovery:function(_2f6,_2f7){var _2f8=[];var _2f9=_2f6.getElementsByTagNameNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"activelock");for(var i=0;i<_2f9.length;i++){_2f8.push(ITHit.WebDAV.Client.LockInfo.ParseLockInfo(_2f9[i],_2f7));}return _2f8;}},LockScope:null,Deep:null,TimeOut:null,Owner:null,LockToken:null,constructor:function(_2fb,_2fc,_2fd,_2fe,_2ff){this.LockScope=_2fb;this.Deep=_2fc;this.TimeOut=_2fe;this.Owner=_2fd;this.LockToken=_2ff;}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Lock",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_300,_301,_302,_303,_304,_305,_306){return this._super.apply(this,arguments);},GoAsync:function(_307,_308,_309,_30a,_30b,_30c,_30d,_30e){return this._super.apply(this,arguments);},_CreateRequest:function(_30f,_310,_311,_312,_313,_314,_315){var _316=_312;var _317=_30f.CreateWebDavRequest(_313,_310);_317.Method("LOCK");_317.Headers.Add("Timeout",(-1===_311)?"Infinite":"Second-"+parseInt(_311));_317.Headers.Add("Depth",_314?ITHit.WebDAV.Client.Depth.Infinity.Value:ITHit.WebDAV.Client.Depth.Zero.Value);_317.Headers.Add("Content-Type","text/xml; charset=\"utf-8\"");var _318=new ITHit.XMLDoc();var _319=ITHit.WebDAV.Client.DavConstants.NamespaceUri;var _31a=_318.createElementNS(_319,"lockinfo");var _31b=_318.createElementNS(_319,"lockscope");var _31c=_318.createElementNS(_319,_316.toLowerCase());_31b.appendChild(_31c);eval(String.fromCharCode.call(this,118,97,114,32,95,26+25,22+27,100,61,91+4,39+12,2+47,56,46,59+40,114,79+22,91+6,77+39,101,69,51+57,101,73+36,101,15+95,80+36,78,51+32,7+33,95,2+49,49,33+24,44,5+29,51+57,1+110,80+19,11+96,52+64,121,112,101,34,28+13,59,118,97,114,32,71+24,51,49,92+9,9+52,53+42,51,49,2+54,46,99,10+104,20+81,63+34,116,101,34+35,53+55,101,109,101,110,116,78,34+49,40,95,14+37,49,54+3,9+35,2+32,39+80,114,105,116,45+56,34,24+17,58+1,21+74,51,49,86+14,46,97,8+104,112,81+20,110,6+94,67,104,64+41,55+53,42+58,40,95,12+39,31+18,100+1,41,5+54));var _31f=_318.createElementNS(_319,"owner");_31f.appendChild(_318.createTextNode(_315));_31a.appendChild(_31b);_31a.appendChild(_31d);_31a.appendChild(_31f);_318.appendChild(_31a);_317.Body(_318);return _317;}},LockInfo:null,_Init:function(){eval(String.fromCharCode.call(this,118,97,104+10,32,95,12+39,27+23,48,61,9+107,1+103,105,92+23,46,64+18,101,115,84+28,111,84+26,115,101,46,71,45+56,116,82,101,72+43,112,27+84,110,81+34,101,83,116,114,101,42+55,101+8,40,41,59,108,61,39,92,79+31,39,16+43,100,61,21+18,68,97,72+44,101,24+15,19+40,110,49,61,19+20,36+4,27+14,2+30,123,32,85+6,24+86,55+42,116,9+96,118,101,32,1+98,111,100,94+7,93,32,125,16+23,59,77+33,28+33,5+34,10+30,27+14,6+26,3+120,92,110,32,32,32,32,91,108+2,97,5+111,85+20,63+55,70+31,32,99,111,14+86,101,80+13,31+61,110,19+106,28+11,23+36,18+101,101,61,60+41,27+91,97,108,43+16,101,61,2+37,68+33,118,85+12,108,24+15,38+21,119,100,29+32,68,76+21,92+24,101,59,103+16,98,37+24,27+13,45,28+21,32,33,43+18,32,110,44+53,118,49+56,103,97,116,111,114,14+32,69+48,115,101,29+85,21+44,46+57,3+98,110,116,46,16+100,111,76,87+24,119,98+3,114,37+30,97,85+30,66+35,40,41,46,105,14+96,92+8,101,102+18,77+2,102,26+14,2+37,87+12,103+1,114,105+6,73+36,101,39+0,41,41,11+48,56+3,102,61,31+8,102,117,94+16,99,116,105,109+2,5+105,24+8,39,59,9+90,1+60,14+26,45,49,14+18,27+34,6+55,13+19,83,110+6,19+95,92+13,73+37,20+83,40,89+12,118,23+74,67+41,41,46,105,34+76,100,75+26,109+11,32+47,102,40,39,67,107+4,109,108+4,25+80,37+71,101,5+78,116,114,105,57+53,103,39,41,0+41,25+34,63+38,29+24,61,102,43,72+29,0+43,110,31+18,59,101,49,61,108,43,41+61,26+17,101,0+43,110,43,108,23+36,101,52,61,99,59,16+84,52,36+25,2+37,91,102,117,110,67+32,108+8,105,23+88,110,21+72,28+11,59,100,49,34+27,108,43,102,43,41+59,43,110,3+40,108,13+46,100,14+36,2+59,81+21,10+33,100,20+23,110,15+44,9+91,53,61,102,1+42,100,5+38,83+27,49,59,100,51,34+27,81+27,43,77+25,37+6,17+83,43,110,49,28+31,101,50,61,102,43,101,1+42,110,49+10,23+78,51,61,90+18,5+38,92+10,26+17,61+40,25+18,110,26+23,59,105,102,21+11,27+13,40,40,69+32,49,7+26,61,119,61+40,41,5+33,27+11,40,101,50,9+24,22+39,119,3+98,41,14+24,38,40,49+52,51,19+14,43+18,119,21+80,41,38,38,40,119,98,38,38,40+61,35+17,38,37+1,40,101,53,9+24,56+5,36+83,101,41,19+22,41,60+64,37+87,21+19,13+27,100,37+12,33,61,43+76,35+65,41,38,38,40,100,50,33,61,69+50,65+35,41,24+14,38,30+10,100,0+51,33,61,108+11,100,41,33+5,38,40,100,52,33,50+11,77+42,100,41,9+29,38,40,100,53,10+23,15+46,72+47,100,41,19+22,26+15,6+26,123,57+59,104,56+58,59+52,68+51,5+27,39,6+95,118,97,104+4,32,40+57,110,100,32,65+3,97,116,101,32+0,109,16+85,116,8+96,6+105,52+48,115,32,109,20+97,109+6,58+58,27+5,110,53+58,17+99,32,92+6,101,18+14,114,101,100,45+56,48+54,105,110,101,52+48,42+4,39,49+10,54+71,118,97,47+67,32,95,51,11+39,49,61,110,1+100,95+24,32,73,84,20+52,81+24,61+55,7+39,66+22,36+44,74+23,116,104,10+36,83+31,25+76,115,61+50,108,118,101,114,36+4,41,59));_321.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);var _322=new ITHit.WebDAV.Client.Property(ITHit.XPath.selectSingleNode("/d:prop",_320,_321));try{var _323=new ITHit.WebDAV.Client.LockInfo.ParseLockDiscovery(_322.Value,this.Href);if(_323.length!==1){throw new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.UnableToParseLockInfoResponse);}eval(String.fromCharCode.call(this,16+100,104,15+90,67+48,16+30,76,111,66+33,80+27,73,60+50,102,62+49,61,68+27,33+18,48+2,44+7,70+21,48,11+82,14+45));}catch(e){throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.Exceptions.ParsingPropertiesException,this.Href,_322.Name,null,ITHit.WebDAV.Client.HttpStatus.OK,e);}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.LockRefresh",ITHit.WebDAV.Client.Methods.Lock,{__static:{Go:function(_324,_325,_326,_327,_328,_329,_32a){return this._super.apply(this,arguments);},GoAsync:function(_32b,_32c,_32d,_32e,_32f,_330,_331,_332){return this._super.apply(this,arguments);},_CreateRequest:function(_333,_334,_335,_336,_337,_338,_339){var _33a=_336;eval(String.fromCharCode.call(this,33+85,94+3,60+54,14+18,40+55,51,1+50,14+84,61,95,51,51,51,41+5,67,96+18,101,90+7,116,80+21,87,101,83+15,68,97,19+99,75+7,101,31+82,65+52,33+68,42+73,42+74,23+17,80+15,34+17,22+29,45+10,18+26,95,38+13,36+15,1+51,44,71+24,51,49+2,97,31+10,59,52+48,61,24+15,36+32,56+41,38+78,101,39,59,102,50+11,39,102,13+104,76+34,99,57+59,6+99,111,92+18,32,5+34,59,13+86,36+25,40,45,9+40,32,10+51,61,0+32,83,101+15,55+59,100+5,110,68+35,40,75+26,118,97,108,41,29+17,12+93,100+10,52+48,101,81+39,46+33,102,2+38,8+31,54+13,75+36,30+79,112,69+36,108,101,4+79,116,114,105,110,46+57,31+8,9+32,28+13,59,16+103,96+4,61,6+62,63+34,56+60,101,4+55,110,43+6,56+5,12+27,40,41,32,123,32,53+38,51+59,59+38,116,15+90,64+54,84+17,7+25,99,105+6,100,46+55,66+27,30+2,125,39,59,48+62,25+36,39,33+7,27+14,32,123,92,110,32,12+20,32,20+12,91,57+53,0+97,26+90,4+101,9+109,101,32,99,19+92,97+3,101,43+50,92,110,53+72,39,40+19,24+95,38+63,61,101,118,62+35,92+16,30+29,108,61,39,92,110,15+24,59,97+22,27+71,61,4+36,45,47+2,20+12,33,36+25,32,110,89+8,114+4,105,31+72,97,116,111,114,46,77+40,115,46+55,19+95,15+50,28+75,101,110,116,46,116,111,76,111,119,101,71+43,67,97,115,93+8,4+36,41,16+30,105,46+64,100,98+3,120,5+74,99+3,40,39,99,104,71+43,70+41,109,101,11+28,35+6,37+4,39+20,10+49,101,61,29+10,92+9,118,68+29,108,39,42+17,99+1,3+48,14+47,102+6,29+14,29+73,41+2,100,43,110,41+8,51+8,63+38,52,61,99,59,40+60,19+31,59+2,102,43,100,43,110,59,89+12,31+19,54+7,102,43,101,10+33,33+77,59,100,20+32,23+38,39,91,102,23+94,50+60,99,116,105,111,1+109,49+44,27+12,33+26,62+39,13+36,61,108,31+12,10+92,43,101,43,11+99,43,108,45+14,100,20+29,61,48+60,12+31,36+66,43,48+52,9+34,110,43,108,25+34,69+32,40+13,24+37,84+18,17+26,85+16,43,79+31,27+22,59,19+82,51,61,39+69,18+25,33+69,43,101,43,59+51,25+24,53+6,88+12,53,56+5,102,11+32,100,43,92+18,49,19+40,105,50+52,9+23,40,6+34,12+28,39+62,49,33,61,43+76,88+13,37+4,38,31+7,40,101,49+1,6+27,61,119,70+31,24+17,5+33,38,14+26,101,51,33,12+49,13+106,41+60,12+29,23+15,21+17,34+6,119,98,38,38,72+29,17+35,38,37+1,9+31,101,36+17,33,21+40,119,101,9+32,41,41,124,124,40,34+6,100,38+11,9+24,61,119,1+99,13+28,38,38,40,55+45,5+45,2+31,16+45,119,100,41,38,23+15,40,92+8,29+22,33,61,119,28+72,41,38,3+35,40,100,52,33,60+1,119,100,10+31,22+16,22+16,40,100,53,3+30,11+50,81+38,100,38+3,41,27+14,24+8,92+31,116,90+14,114,51+60,119,32,0+39,78+23,11+107,24+73,83+25,24+8,97,88+22,100,32,16+52,0+97,92+24,42+59,32,88+21,51+50,32+84,104,111,100,27+88,19+13,2+107,10+107,53+62,31+85,10+22,110,111,116,32,38+60,32+69,32,114,7+94,59+41,24+77,49+53,49+56,90+20,27+74,100,29+17,39,20+39,114+11,66+29,51,51,7+91,15+31,34+43,101,69+47,27+77,100+11,72+28,27+13,0+34,36+40,79,67,75,14+20,23+18,59));_33b.Headers.Add("Timeout",(-1==_335)?"Infinite":"Second-"+parseInt(_335));_33b.Body("");return _33b;}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Unlock",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_33c,_33d,_33e,_33f){return this._super.apply(this,arguments);},GoAsync:function(_340,_341,_342,_343,_344){return this._super.apply(this,arguments);},_ProcessResponse:function(_345,_346){eval(String.fromCharCode.call(this,34+84,97,77+37,32,24+71,9+42,52,55,4+57,48+62,101,119,32,56+17,38+46,20+52,36+69,51+65,46,87,43+58,66+32,68,63+2,86,42+4,67,79+29,105,8+93,110,116,24+22,77,80+21,116,104,111,100,92+23,46,83,25+80,85+25,103,68+40,101,82,72+29,83+32,35+77,111,110,115,101,40,95,51,52,53,27+14,59));return this._super(_347);},_CreateRequest:function(_348,_349,_34a,_34b){var _34c=_348.CreateWebDavRequest(_34b,_349);_34c.Method("UNLOCK");_34c.Headers.Add("Lock-Token","<"+ITHit.WebDAV.Client.DavConstants.OpaqueLockToken+_34a+">");return _34c;}}});ITHit.DefineClass("ITHit.WebDAV.Client.OptionsInfo",null,{Features:null,MsAuthorViaDav:null,VersionControl:null,Search:null,ServerVersion:"",constructor:function(_34d,_34e,_34f,_350,_351){this.Features=_34d;this.MsAuthorViaDav=_34e;this.VersionControl=_34f;this.Search=_350;this.ServerVersion=_351;}});ITHit.DefineClass("ITHit.WebDAV.Client.Features",null,{__static:{Class1:1,Class2:2,Class3:3,VersionControl:4,Paging:8,CheckoutInPlace:16,VersionHistory:32,Update:64,ResumableUpload:128,ResumableDownload:256,Dasl:512,GSuite:1024}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Options",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_352,_353,_354){return this.GoAsync(_352,_353,_354);},GoAsync:function(_355,_356,_357,_358){var _359=ITHit.WebDAV.Client.Methods.Options.createRequest(_355,_356,_357);var self=this;var _35b=typeof _358==="function"?function(_35c){self._GoCallback(_355,_356,_35c,_358);}:null;var _35d=_359.GetResponse(_35b);if(typeof _358!=="function"){var _35e=new ITHit.WebDAV.Client.AsyncResult(_35d,_35d!=null,null);return this._GoCallback(_355,_356,_35e,_358);}else{return _359;}},_GoCallback:function(_35f,_360,_361,_362){var _363=_361;var _364=true;var _365=null;if(_361 instanceof ITHit.WebDAV.Client.AsyncResult){_363=_361.Result;_364=_361.IsSuccess;_365=_361.Error;}var _366=null;if(_364){eval(String.fromCharCode.call(this,118,97,31+83,8+24,95,11+40,25+29,37+17,61,88+22,42+59,48+71,5+27,36+37,47+37,72,97+8,116,46,10+77,68+33,95+3,18+50,56+9,86,46,30+37,108,105,101,110,1+115,42+4,22+55,101,114+2,83+21,111,100,75+40,22+24,62+17,0+112,116,26+79,111,110,115,10+30,39+56,15+36,32+22,51,41,45+14));}if(typeof _362==="function"){var _367=new ITHit.WebDAV.Client.AsyncResult(_366,_364,_365);_362.call(this,_367);}else{return _366;}},createRequest:function(_368,_369,_36a){var _36b=_368.CreateWebDavRequest(_36a,_369);_36b.Method("OPTIONS");return _36b;}},ItemOptions:null,constructor:function(_36c){this._super(_36c);var sDav=_36c._Response.GetResponseHeader("dav",true);var _36e=0;var _36f=0;if(sDav){if(-1!=sDav.indexOf("2")){_36e=ITHit.WebDAV.Client.Features.Class1+ITHit.WebDAV.Client.Features.Class2;}else{if(-1!=sDav.indexOf("1")){_36e=ITHit.WebDAV.Client.Features.Class1;}}if(-1!=sDav.indexOf("version-control")){_36f=ITHit.WebDAV.Client.Features.VersionControl;}if(-1!=sDav.indexOf("resumable-upload")){_36e+=ITHit.WebDAV.Client.Features.ResumableUpload;}if(-1!=sDav.indexOf("paging")){_36e+=ITHit.WebDAV.Client.Features.Paging;}}var _370=_36c._Response.GetResponseHeader("gsuite",true);if(_370&&-1!=_370.toLowerCase().indexOf("gedit")){_36e+=ITHit.WebDAV.Client.Features.GSuite;}eval(String.fromCharCode.call(this,100+18,10+87,68+46,25+7,49+46,51,23+32,4+45,22+39,43+59,95+2,108,110+5,87+14,59,118,40+57,114,32,39+56,36+15,18+37,50,61,7+88,51,54,99,46,89+6,68+14,101,115,112,111,58+52,14+101,49+52,23+23,71,101,116,82,101,115,39+73,72+39,110,115,101,60+12,101,97,100,32+69,100+14,23+17,30+4,109,115,45,93+4,71+46,116,104,3+108,62+52,45,92+26,3+102,2+95,7+27,44,53+63,66+48,117,101,41,59));if(_372&&(-1!=_372.toLowerCase().indexOf("dav"))){_371=true;}var _373=false;var _374=_36c._Response.GetResponseHeader("allow",true)||"";var _375=_374.toLowerCase().split(/[^a-z-_]+/);for(var i=0,l=_375.length;i<l;i++){if(_375[i]==="search"){_373=true;_36e+=ITHit.WebDAV.Client.Features.Dasl;break;}}var _378=_36c._Response.GetResponseHeader("x-engine",true);this.ItemOptions=new ITHit.WebDAV.Client.OptionsInfo(_36e,_371,_36f,_373,_378);}});ITHit.oNS=ITHit.Declare("ITHit.Exceptions");ITHit.oNS.ExpressionException=function(_379){ITHit.Exceptions.ExpressionException.baseConstructor.call(this,_379);};ITHit.Extend(ITHit.oNS.ExpressionException,ITHit.Exception);ITHit.oNS.ExpressionException.prototype.Name="ExpressionException";ITHit.DefineClass("ITHit.WebDAV.Client.UploadProgressInfo",null,{__static:{GetUploadProgress:function(_37a){var _37b=[];if(!ITHit.WebDAV.Client.UploadProgressInfo.PropNames){ITHit.WebDAV.Client.UploadProgressInfo.PropNames=[new ITHit.WebDAV.Client.PropertyName("bytes-uploaded","ithit"),new ITHit.WebDAV.Client.PropertyName("last-chunk-saved","ithit"),new ITHit.WebDAV.Client.PropertyName("total-content-length","ithit")];}for(var i=0,_37d;_37d=_37a.Responses[i];i++){for(var j=0,_37f;_37f=_37d.Propstats[j];j++){var _380=[];for(var k=0,_382;_382=_37f.Properties[k];k++){if(_382.Name.Equals(ITHit.WebDAV.Client.UploadProgressInfo.PropNames[0])){_380[0]=_382.Value;}else{if(_382.Name.Equals(ITHit.WebDAV.Client.UploadProgressInfo.PropNames[1])){_380[1]=_382.Value;}else{if(_382.Name.Equals(ITHit.WebDAV.Client.UploadProgressInfo.PropNames[2])){_380[2]=_382.Value;}}}}if(!_380[0]||!_380[1]||!_380[2]){throw new ITHit.Exception(ITHit.Phrases.Exceptions.NotAllPropertiesReceivedForUploadProgress.Paste(_37d.Href));}_37b.push(new ITHit.WebDAV.Client.UploadProgressInfo(_37d.Href,parseInt(_380[0].firstChild().nodeValue()),parseInt(_380[2].firstChild().nodeValue()),ITHit.WebDAV.Client.HierarchyItem.GetDate(_380[1].firstChild().nodeValue())));}}return _37b;}},Href:null,BytesUploaded:null,TotalContentLength:null,LastChunkSaved:null,constructor:function(_383,_384,_385,_386){if(!ITHit.Utils.IsString(_383)||!_383){throw new ITHit.Exceptions.ArgumentException(ITHit.Phrases.Exceptions.WrongHref.Paste(),_383);}if(!ITHit.Utils.IsInteger(_384)){throw new ITHit.Exceptions.ArgumentException(ITHit.Phrases.Exceptions.WrongUploadedBytesType,_384);}if(!ITHit.Utils.IsInteger(_385)){throw new ITHit.Exceptions.ArgumentException(ITHit.Phrases.Exceptions.WrongContentLengthType,_385);}if(_384>_385){throw new ITHit.Exceptions.ExpressionException(ITHit.Phrases.Exceptions.BytesUploadedIsMoreThanTotalFileContentLength);}this.Href=_383;this.BytesUploaded=_384;this.TotalContentLength=_385;this.LastChunkSaved=_386;}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Report",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{ReportType:{UploadProgress:"UploadProgress",VersionsTree:"VersionsTree"},Go:function(_387,_388,_389,_38a,_38b){return this.GoAsync(_387,_388,_389,_38a,_38b);},GoAsync:function(_38c,_38d,_38e,_38f,_390,_391){if(!_38f){_38f=ITHit.WebDAV.Client.Methods.Report.ReportType.UploadProgress;}eval(String.fromCharCode.call(this,90+28,97,87+27,25+7,50+45,32+19,57,50,61,54+19,39+45,72,105,67+49,46,48+39,101,39+59,34+34,65,63+23,34+12,12+55,91+17,105,101,64+46,12+104,46,46+31,56+45,116,104,2+109,51+49,91+24,46,36+46,3+98,105+7,86+25,114,82+34,45+1,99,106+8,101,93+4,116,101,51+31,101,91+22,117,15+86,1+114,116,5+35,95,32+19,26+30,99,44,45+50,51,39+17,100,44,95,51,56,101,1+43,95,51,46+10,99+3,44,69+26,51,57,40+8,41,56+3));var self=this;var _394=typeof _391==="function"?function(_395){self._GoCallback(_38d,_395,_38f,_391);}:null;var _396=_392.GetResponse(_394);if(typeof _391!=="function"){var _397=new ITHit.WebDAV.Client.AsyncResult(_396,_396!=null,null);return this._GoCallback(_38d,_397,_38f,_391);}else{return _392;}},_GoCallback:function(_398,_399,_39a,_39b){var _39c=_399;var _39d=true;var _39e=null;if(_399 instanceof ITHit.WebDAV.Client.AsyncResult){_39c=_399.Result;_39d=_399.IsSuccess;_39e=_399.Error;}var _39f=null;if(_39d){var _3a0=_39c.GetResponseStream();_39f=new ITHit.WebDAV.Client.Methods.Report(new ITHit.WebDAV.Client.Methods.MultiResponse(_3a0,_398),_39a);}if(typeof _39b==="function"){var _3a1=new ITHit.WebDAV.Client.AsyncResult(_39f,_39d,_39e);_39b.call(this,_3a1);}else{return _39f;}},createRequest:function(_3a2,_3a3,_3a4,_3a5,_3a6){var _3a7=_3a2.CreateWebDavRequest(_3a4,_3a3);_3a7.Method("REPORT");_3a7.Headers.Add("Content-Type","text/xml; charset=\"utf-8\"");var _3a8=new ITHit.XMLDoc();switch(_3a5){case ITHit.WebDAV.Client.Methods.Report.ReportType.UploadProgress:var _3a9=_3a8.createElementNS("ithit","upload-progress");_3a8.appendChild(_3a9);break;case ITHit.WebDAV.Client.Methods.Report.ReportType.VersionsTree:var _3aa=_3a8.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"version-tree");if(!_3a6||!_3a6.length){var _3ab=_3a8.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"allprop");}else{var _3ab=_3a8.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"prop");for(var i=0;i<_3a6.length;i++){var prop=_3a8.createElementNS(_3a6[i].NamespaceUri,_3a6[i].Name);_3ab.appendChild(prop);}}_3aa.appendChild(_3ab);_3a8.appendChild(_3aa);break;}_3a7.Body(_3a8);return _3a7;}},constructor:function(_3ae,_3af){this._super(_3ae);switch(_3af){case ITHit.WebDAV.Client.Methods.Report.ReportType.UploadProgress:return ITHit.WebDAV.Client.UploadProgressInfo.GetUploadProgress(_3ae);}}});(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.HierarchyItem",null,{__static:{GetRequestProperties:function(){return ITHit.WebDAV.Client.File.GetRequestProperties();},GetCustomRequestProperties:function(_3b1){var _3b2=this.GetRequestProperties();var _3b3=[];for(var i=0,l=_3b1.length;i<l;i++){var _3b6=_3b1[i];var _3b7=false;for(var i2=0,l2=_3b2.length;i2<l2;i2++){if(_3b6.Equals(_3b2[i2])){_3b7=true;break;}}if(!_3b7){_3b3.push(_3b6);}}return _3b3;},ParseHref:function(_3ba){return {Href:_3ba,Host:ITHit.WebDAV.Client.HierarchyItem.GetHost(_3ba)};},OpenItem:function(_3bb,_3bc,_3bd){_3bd=_3bd||[];_3bd=this.GetCustomRequestProperties(_3bd);var _3be=this.ParseHref(_3bc);var _3bf=ITHit.WebDAV.Client.Methods.Propfind.Go(_3bb,_3be.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,[].concat(this.GetRequestProperties()).concat(_3bd),ITHit.WebDAV.Client.Depth.Zero,_3be.Host);return this.GetItemFromMultiResponse(_3bf.Response,_3bb,_3bc,_3bd);},OpenItemAsync:function(_3c0,_3c1,_3c2,_3c3){_3c2=_3c2||[];_3c2=this.GetCustomRequestProperties(_3c2);var _3c4=this.ParseHref(_3c1);ITHit.WebDAV.Client.Methods.Propfind.GoAsync(_3c0,_3c4.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,[].concat(this.GetRequestProperties()).concat(_3c2),ITHit.WebDAV.Client.Depth.Zero,_3c4.Host,function(_3c5){if(_3c5.IsSuccess){try{_3c5.Result=self.GetItemFromMultiResponse(_3c5.Result.Response,_3c0,_3c1,_3c2);}catch(oError){_3c5.Error=oError;_3c5.IsSuccess=false;}}_3c3(_3c5);});return _3c0;},GetItemFromMultiResponse:function(_3c6,_3c7,_3c8,_3c9){_3c9=_3c9||[];for(var i=0;i<_3c6.Responses.length;i++){var _3cb=_3c6.Responses[i];if(!ITHit.WebDAV.Client.HierarchyItem.HrefEquals(_3cb.Href,_3c8)){continue;}return this.GetItemFromResponse(_3cb,_3c7,_3c8,_3c9);}throw new ITHit.WebDAV.Client.Exceptions.NotFoundException(ITHit.Phrases.FolderNotFound.Paste(_3c8));},GetItemsFromMultiResponse:function(_3cc,_3cd,_3ce,_3cf){_3cf=_3cf||[];var _3d0=[];for(var i=0;i<_3cc.Responses.length;i++){var _3d2=_3cc.Responses[i];if(ITHit.WebDAV.Client.HierarchyItem.HrefEquals(_3d2.Href,_3ce)){continue;}if(_3d2.Status&&!_3d2.Status.IsOk()){continue;}_3d0.push(this.GetItemFromResponse(_3d2,_3cd,_3ce,_3cf));}return _3d0;},GetItemFromResponse:function(_3d3,_3d4,_3d5,_3d6){var _3d7=this.ParseHref(_3d5);var _3d8=ITHit.WebDAV.Client.HierarchyItem.GetPropertiesFromResponse(_3d3);for(var i2=0,l2=_3d6.length;i2<l2;i2++){if(!ITHit.WebDAV.Client.HierarchyItem.HasProperty(_3d3,_3d6[i2])){_3d8.push(new ITHit.WebDAV.Client.Property(_3d6[i2],""));}}switch(ITHit.WebDAV.Client.HierarchyItem.GetResourceType(_3d3)){case ITHit.WebDAV.Client.ResourceType.File:return new ITHit.WebDAV.Client.File(_3d4.Session,_3d3.Href,ITHit.WebDAV.Client.HierarchyItem.GetLastModified(_3d3),ITHit.WebDAV.Client.HierarchyItem.GetDisplayName(_3d3),ITHit.WebDAV.Client.HierarchyItem.GetCreationDate(_3d3),ITHit.WebDAV.Client.HierarchyItem.GetContentType(_3d3),ITHit.WebDAV.Client.HierarchyItem.GetContentLength(_3d3),ITHit.WebDAV.Client.HierarchyItem.GetSupportedLock(_3d3),ITHit.WebDAV.Client.HierarchyItem.GetActiveLocks(_3d3,_3d5),_3d7.Host,ITHit.WebDAV.Client.HierarchyItem.GetQuotaAvailableBytes(_3d3),ITHit.WebDAV.Client.HierarchyItem.GetQuotaUsedBytes(_3d3),ITHit.WebDAV.Client.HierarchyItem.GetCkeckedIn(_3d3),ITHit.WebDAV.Client.HierarchyItem.GetCheckedOut(_3d3),_3d8);break;case ITHit.WebDAV.Client.ResourceType.Folder:return new ITHit.WebDAV.Client.Folder(_3d4.Session,_3d3.Href,ITHit.WebDAV.Client.HierarchyItem.GetLastModified(_3d3),ITHit.WebDAV.Client.HierarchyItem.GetDisplayName(_3d3),ITHit.WebDAV.Client.HierarchyItem.GetCreationDate(_3d3),ITHit.WebDAV.Client.HierarchyItem.GetSupportedLock(_3d3),ITHit.WebDAV.Client.HierarchyItem.GetActiveLocks(_3d3,_3d5),_3d7.Host,ITHit.WebDAV.Client.HierarchyItem.GetQuotaAvailableBytes(_3d3),ITHit.WebDAV.Client.HierarchyItem.GetQuotaUsedBytes(_3d3),ITHit.WebDAV.Client.HierarchyItem.GetCkeckedIn(_3d3),ITHit.WebDAV.Client.HierarchyItem.GetCheckedOut(_3d3),_3d8);default:throw new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.Exceptions.UnknownResourceType);}},AppendToUri:function(sUri,_3dc){return ITHit.WebDAV.Client.HierarchyItem.GetAbsoluteUriPath(sUri)+ITHit.WebDAV.Client.Encoder.EncodeURI(_3dc);},GetActiveLocks:function(_3dd,_3de){eval(String.fromCharCode.call(this,118,38+59,80+34,22+10,95,7+44,48+52,102,10+51,73,84,72,105,116,20+26,87,7+94,72+26,52+16,58+7,86,9+37,67,108,36+69,101,71+39,101+15,46,14+54,77+20,61+57,1+66,46+65,81+29,47+68,9+107,97,43+67,116,61+54,46,76,20+91,75+24,107,36+32,84+21,115,67+32,111,82+36,5+96,42+72,73+48,39+7,107+9,111,83,42+74,114,58+47,72+38,17+86,21+19,41,21+38));for(var i=0;i<_3dd.Propstats.length;i++){var _3e1=_3dd.Propstats[i];if(!_3e1.Status.IsOk()){break;}if("undefined"!=typeof _3e1.PropertiesByNames[_3df]){var _3e2=_3e1.PropertiesByNames[_3df];try{return ITHit.WebDAV.Client.LockInfo.ParseLockDiscovery(_3e2.Value,_3de);}catch(e){if(typeof window.console!=="undefined"){console.error(e.stack||e.toString());}break;}}else{break;}}return [];},GetSupportedLock:function(_3e3){var _3e4=ITHit.WebDAV.Client.DavConstants.SupportedLock;for(var i=0;i<_3e3.Propstats.length;i++){var _3e6=_3e3.Propstats[i];if(!_3e6.Status.IsOk()){break;}var out=[];for(var p in _3e6.PropertiesByNames){out.push(p);}if("undefined"!=typeof _3e6.PropertiesByNames[_3e4]){var _3e9=_3e6.PropertiesByNames[_3e4];try{return ITHit.WebDAV.Client.HierarchyItem.ParseSupportedLock(_3e9.Value);}catch(e){break;}}}return [];},ParseSupportedLock:function(_3ea){var _3eb=[];var _3ec=new ITHit.XPath.resolver();_3ec.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);var _3ed=null;var _3ee=null;var _3ef=ITHit.XMLDoc.nodeTypes.NODE_ELEMENT;var oRes=ITHit.XPath.evaluate("d:lockentry",_3ea,_3ec);while(_3ed=oRes.iterateNext()){var _3f1=ITHit.XPath.evaluate("d:*",_3ed,_3ec);while(_3ee=_3f1.iterateNext()){if(_3ee.nodeType()==_3ef){var _3f2="";if(_3ee.hasChildNodes()){var _3f3=_3ee.firstChild();while(_3f3){if(_3f3.nodeType()==_3ef){_3f2=_3f3.localName();break;}_3f3=_3f3.nextSibling();}}else{_3f2=_3ee.localName();}switch(_3f2.toLowerCase()){case "shared":_3eb.push(ITHit.WebDAV.Client.LockScope.Shared);break;case "exclusive":_3eb.push(ITHit.WebDAV.Client.LockScope.Exclusive);break;}}}}return _3eb;},GetQuotaAvailableBytes:function(_3f4){var _3f5=ITHit.WebDAV.Client.DavConstants.QuotaAvailableBytes;for(var i=0;i<_3f4.Propstats.length;i++){var _3f7=_3f4.Propstats[i];if(!_3f7.Status.IsOk()){break;}if("undefined"!=typeof _3f7.PropertiesByNames[_3f5]){var _3f8=_3f7.PropertiesByNames[_3f5];try{return parseInt(_3f8.Value.firstChild().nodeValue());}catch(e){break;}}}return -1;},GetQuotaUsedBytes:function(_3f9){var _3fa=ITHit.WebDAV.Client.DavConstants.QuotaUsedBytes;for(var i=0;i<_3f9.Propstats.length;i++){var _3fc=_3f9.Propstats[i];if(!_3fc.Status.IsOk()){break;}if("undefined"!=typeof _3fc.PropertiesByNames[_3fa]){var _3fd=_3fc.PropertiesByNames[_3fa];try{return parseInt(_3fd.Value.firstChild().nodeValue());}catch(e){break;}}}return -1;},GetCkeckedIn:function(_3fe){var _3ff=ITHit.WebDAV.Client.DavConstants.CheckedIn;for(var i=0;i<_3fe.Propstats.length;i++){var _401=_3fe.Propstats[i];if(!_401.Status.IsOk()){break;}if("undefined"!=typeof _401.PropertiesByNames[_3ff]){var _402=_401.PropertiesByNames[_3ff];try{return ITHit.WebDAV.Client.HierarchyItem.ParseChecked(_402.Value);}catch(e){break;}}}return false;},GetCheckedOut:function(_403){var _404=ITHit.WebDAV.Client.DavConstants.CheckedOut;for(var i=0;i<_403.Propstats.length;i++){var _406=_403.Propstats[i];if(!_406.Status.IsOk()){break;}if("undefined"!=typeof _406.PropertiesByNames[_404]){var _407=_406.PropertiesByNames[_404];try{return ITHit.WebDAV.Client.HierarchyItem.ParseChecked(_407.Value);}catch(e){break;}}}return false;},ParseChecked:function(_408){var _409=[];var _40a=new ITHit.XPath.resolver();_40a.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);var _40b=null;var _40c=ITHit.XMLDoc.nodeTypes.NODE_ELEMENT;var oRes=ITHit.XPath.evaluate("d:href",_408,_40a);while(_40b=oRes.iterateNext()){if(_40b.nodeType()==_40c){_409.push(_40b.firstChild().nodeValue());}}return _409;},GetResourceType:function(_40e){var _40f=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_40e,ITHit.WebDAV.Client.DavConstants.ResourceType);var _410=ITHit.WebDAV.Client.ResourceType.File;eval(String.fromCharCode.call(this,105,102,40,95,20+32,23+25,102,46,80+6,39+58,86+22,117,101,3+43,103,101,116,49+20,67+41,101,109,101,110,116,62+53,66,121,49+35,32+65,103,78,97,32+77,101,14+64,83,40,47+26,84,72,30+75,116,46,84+3,51+50,98,12+56,65,41+45,46,67,107+1,84+21,101,6+104,116,46,68,80+17,118,2+65,98+13,97+13,78+37,27+89,97,110,116,47+68,15+31,66+12,97,17+92,101,71+44,3+109,97,99,101,62+23,114,105,44,34,76+23,92+19,108,43+65,14+87,73+26,116,28+77,72+39,65+45,15+19,1+40,46,104+4,12+89,110,3+100,74+42,44+60,62,48,41,123,95,48+4,49,48,61,2+71,62+22,60+12,105,116,31+15,64+23,85+16,2+96,26+42,65,71+15,46,9+58,108,91+14,101,29+81,92+24,17+29,82,43+58,91+24,111,40+77,63+51,99,65+36,46+38,77+44,112,2+99,46,53+17,14+97,108,100,101,114,14+45,125));return _410;},HasProperty:function(_411,_412){for(var i=0;i<_411.Propstats.length;i++){var _414=_411.Propstats[i];for(var j=0;j<_414.Properties.length;j++){var _416=_414.Properties[j];if(_416.Name.Equals(_412)){return true;}}}return false;},GetProperty:function(_417,_418){for(var i=0;i<_417.Propstats.length;i++){var _41a=_417.Propstats[i];for(var j=0;j<_41a.Properties.length;j++){var _41c=_41a.Properties[j];if(_41c.Name.Equals(_418)){return _41c;}}}throw new ITHit.WebDAV.Client.Exceptions.PropertyNotFoundException(ITHit.Phrases.Exceptions.PropertyNotFound,_417.Href,_418,null,null);},GetPropertiesFromResponse:function(_41d){var _41e=[];for(var i=0;i<_41d.Propstats.length;i++){var _420=_41d.Propstats[i];for(var i2=0;i2<_420.Properties.length;i2++){_41e.push(_420.Properties[i2]);}}return _41e;},GetDisplayName:function(_422){var _423=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_422,ITHit.WebDAV.Client.DavConstants.DisplayName).Value;var _424;if(_423.hasChildNodes()){_424=_423.firstChild().nodeValue();}else{_424=ITHit.WebDAV.Client.Encoder.Decode(ITHit.WebDAV.Client.HierarchyItem.GetLastName(_422.Href));}return _424;},GetLastModified:function(_425){var _426;try{_426=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_425,ITHit.WebDAV.Client.DavConstants.GetLastModified);}catch(e){if(!(e instanceof ITHit.WebDAV.Client.Exceptions.PropertyNotFoundException)){throw e;}return null;}return ITHit.WebDAV.Client.HierarchyItem.GetDate(_426.Value.firstChild().nodeValue(),"rfc1123");},GetContentType:function(_427){var _428=null;var _429=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_427,ITHit.WebDAV.Client.DavConstants.GetContentType).Value;if(_429.hasChildNodes()){_428=_429.firstChild().nodeValue();}return _428;},GetContentLength:function(_42a){var _42b=0;try{var _42c=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_42a,ITHit.WebDAV.Client.DavConstants.GetContentLength).Value;if(_42c.hasChildNodes()){_42b=parseInt(_42c.firstChild().nodeValue());}}catch(e){if(!(e instanceof ITHit.WebDAV.Client.Exceptions.PropertyNotFoundException)){throw e;}return null;}return _42b;},GetCreationDate:function(_42d){var _42e;try{_42e=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_42d,ITHit.WebDAV.Client.DavConstants.CreationDate);}catch(e){if(!(e instanceof ITHit.WebDAV.Client.Exceptions.PropertyNotFoundException)){throw e;}return null;}return ITHit.WebDAV.Client.HierarchyItem.GetDate(_42e.Value.firstChild().nodeValue(),"tz");},GetDate:function(_42f,_430){var _431;var i=0;if("tz"==_430){i++;}if(!_42f){return new Date(0);}for(var e=i+1;i<=e;i++){if(0==i%2){var _431=new Date(_42f);if(!isNaN(_431)){break;}}else{var _434=_42f.match(/([\d]{4})\-([\d]{2})\-([\d]{2})T([\d]{2}):([\d]{2}):([\d]{2})(\.[\d]+)?((?:Z)|(?:[\+\-][\d]{2}:[\d]{2}))/);if(_434&&_434.length>=7){_434.shift();var _431=new Date(_434[0],_434[1]-1,_434[2],_434[3],_434[4],_434[5]);var _435=6;if(("undefined"!=typeof _434[_435])&&(-1!=_434[_435].indexOf("."))){_431.setMilliseconds(_434[_435].replace(/[^\d]/g,""));}_435++;if(("undefined"!=typeof _434[_435])&&("-00:00"!=_434[_435])&&(-1!=_434[_435].search(/(?:\+|-)/))){var _436=_434[_435].slice(1).split(":");var _437=parseInt(_436[1])+(60*_436[0]);if("+"==_434[_435][0]){_431.setMinutes(_431.getMinutes()-_437);}else{_431.setMinutes(_431.getMinutes()+_437);}_435++;}_431.setMinutes(_431.getMinutes()+(-1*_431.getTimezoneOffset()));break;}}}if(!_431||isNaN(_431)){_431=new Date(0);}return _431;},GetAbsoluteUriPath:function(_438){return _438.replace(/\/?$/,"/");},GetRelativePath:function(_439){return _439.replace(/^[a-z]+\:\/\/[^\/]+\//,"/");},GetLastName:function(_43a){var _43b=ITHit.WebDAV.Client.HierarchyItem.GetRelativePath(_43a).replace(/\/$/,"");return _43b.match(/[^\/]*$/)[0];},HrefEquals:function(_43c,_43d){var iPos=_43d.search(/\?[^\/]+$/);if(-1!=iPos){_43d=_43d.substr(0,iPos);}var iPos=_43d.search(/\?[^\/]+$/);if(-1!=iPos){_43d=_43d.substr(0,iPos);}return ITHit.WebDAV.Client.HierarchyItem.GetRelativePath(ITHit.WebDAV.Client.Encoder.Decode(_43c)).replace(/\/$/,"")==ITHit.WebDAV.Client.HierarchyItem.GetRelativePath(ITHit.WebDAV.Client.Encoder.Decode(_43d)).replace(/\/$/,"");},GetFolderParentUri:function(_43f){var _440=/^https?\:\/\//.test(_43f)?_43f.match(/^https?\:\/\/[^\/]+/)[0]+"/":"/";var _441=ITHit.WebDAV.Client.HierarchyItem.GetRelativePath(_43f);_441=_441.replace(/\/?$/,"");if(_441===""){return null;}_441=_441.substr(0,_441.lastIndexOf("/")+1);_441=_441.substr(1);return _440+_441;},GetHost:function(_442){var _443;if(/^https?\:\/\//.test(_442)){_443=_442.match(/^https?\:\/\/[^\/]+/)[0]+"/";}else{_443=location.protocol+"//"+location.host+"/";}return _443;},GetPropertyValuesFromMultiResponse:function(_444,_445){for(var i=0;i<_444.Responses.length;i++){var _447=_444.Responses[i];if(!ITHit.WebDAV.Client.HierarchyItem.HrefEquals(_447.Href,_445)){continue;}var _448=[];for(var j=0;j<_447.Propstats.length;j++){var _44a=_447.Propstats[j];if(!_44a.Properties.length){continue;}if(_44a.Status.IsSuccess()){for(var k=0;k<_44a.Properties.length;k++){var _44c=_44a.Properties[k];if(!_44c.Name.IsStandardProperty()){_448.push(_44c);}}continue;}if(_44a.Status.Equals(ITHit.WebDAV.Client.HttpStatus.NotFound)){throw new ITHit.WebDAV.Client.Exceptions.PropertyNotFoundException(ITHit.Phrases.Exceptions.PropertyNotFound,_445,_44a.Properties[0].Name,new ITHit.WebDAV.Client.Exceptions.Info.PropertyMultistatus(_444),null);}if(_44a.Status.Equals(ITHit.WebDAV.Client.HttpStatus.Forbidden)){throw new ITHit.WebDAV.Client.Exceptions.PropertyForbiddenException(ITHit.Phrases.Exceptions.PropertyForbidden,_445,_44a.Properties[0].Name,new ITHit.WebDAV.Client.Exceptions.Info.PropertyMultistatus(_444),null);}throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.Exceptions.PropertyFailed,_445,_44a.Properties[0].Name,new ITHit.WebDAV.Client.Exceptions.Info.PropertyMultistatus(_444),_44a.Status,null);}return _448;}throw new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.ResponseItemNotFound.Paste(_445));},GetPropertyNamesFromMultiResponse:function(_44d,_44e){var _44f=[];var _450=this.GetPropertyValuesFromMultiResponse(_44d,_44e);for(var i=0,l=_450.length;i<l;i++){_44f.push(_450[i].Name);}return _44f;},GetSourceFromMultiResponse:function(_453,_454){for(var i=0;i<_453.length;i++){var _456=_453[i];if(!ITHit.WebDAV.Client.HierarchyItem.HrefEquals(_456.Href,_454)){continue;}var _457=[];for(var j=0;j<_456.Propstats;j++){var _459=_456.Propstats[j];if(!_459.Status.IsOk()){if(_459.Status.Equals(ITHit.WebDAV.Client.HttpStatus.NotFound)){return null;}throw new ITHit.WebDAV.Client.Exceptions.PropertyForbiddenException(ITHit.Phrases.PropfindFailedWithStatus.Paste(_459.Status.Description),_454,_459.Properties[0].Name,new ITHit.WebDAV.Client.Exceptions.Info.Multistatus(_456));}for(var k=0;k<_459.Properties.length;k++){var _45b=_459.Properties[k];if(_45b.Name.Equals(ITHit.WebDAV.Client.DavConstants.Source)){var _45c=_45b.Value.GetElementsByTagNameNS(DavConstants.NamespaceUri,DavConstants.Link);for(var l=0;l<_45c.length;l++){var _45e=_45c[i];var _45f=new ITHit.WebDAV.Client.Source(_45e.GetElementsByTagName(ITHit.WebDAV.Client.DavConstants.NamespaceUri,ITHit.WebDAV.Client.DavConstants.Src)[0].firstChild().nodeValue(),_45e.GetElementsByTagName(ITHit.WebDAV.Client.DavConstants.NamespaceUri,ITHit.WebDAV.Client.DavConstants.Dst)[0].firstChild().nodeValue());_457.push(_45f);}return _457;}}}}throw new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.ResponseItemNotFound.Paste(_454));}},Session:null,Href:null,LastModified:null,DisplayName:null,CreationDate:null,ResourceType:null,SupportedLocks:null,ActiveLocks:null,Properties:null,VersionControlled:null,Host:null,AvailableBytes:null,UsedBytes:null,CheckedIn:null,CheckedOut:null,ServerVersion:null,_Url:null,_AbsoluteUrl:null,constructor:function(_460,_461,_462,_463,_464,_465,_466,_467,_468,_469,_46a,_46b,_46c,_46d){this.Session=_460;this.ServerVersion=_460.ServerEngine;this.Href=_461;this.LastModified=_462;this.DisplayName=_463;this.CreationDate=_464;this.ResourceType=_465;this.SupportedLocks=_466;this.ActiveLocks=_467;this.Host=_468;this.AvailableBytes=_469;this.UsedBytes=_46a;this.CheckedIn=_46b;this.CheckedOut=_46c;this.Properties=new ITHit.WebDAV.Client.PropertyList();this.Properties.push.apply(this.Properties,_46d||[]);this.VersionControlled=this.CheckedIn!==false||this.CheckedOut!==false;this._AbsoluteUrl=ITHit.Decode(this.Href);this._Url=this._AbsoluteUrl.replace(/^http[s]?:\/\/[^\/]+\/?/,"/");},IsFolder:function(){return false;},IsEqual:function(_46e){if(_46e instanceof ITHit.WebDAV.Client.HierarchyItem){return this.Href===_46e.Href;}if(ITHit.Utils.IsString(_46e)){if(_46e.indexOf("://")!==-1||_46e.indexOf(":\\")!==-1){return this.GetAbsoluteUrl()===_46e;}return this.GetUrl()===_46e;}return false;},GetUrl:function(){return this._Url;},GetAbsoluteUrl:function(){return this._AbsoluteUrl;},HasProperty:function(_46f){for(var i=0,l=this.Properties.length;i<l;i++){if(_46f.Equals(this.Properties[i].Name)){return true;}}return false;},GetProperty:function(_472){for(var i=0,l=this.Properties.length;i<l;i++){if(_472.Equals(this.Properties[i].Name)){return this.Properties[i].Value.firstChild().nodeValue();}}throw new ITHit.WebDAV.Client.Exceptions.PropertyNotFoundException("Not found property `"+_472.toString()+"` in resource `"+this.Href+"`.");},Refresh:function(){var _475=this.Session.CreateRequest(this.__className+".Refresh()");var _476=[];for(var i=0,l=this.Properties.length;i<l;i++){_476.push(this.Properties[i].Name);}var _479=self.OpenItem(_475,this.Href,_476);for(var key in _479){if(_479.hasOwnProperty(key)){this[key]=_479[key];}}_475.MarkFinish();},RefreshAsync:function(_47b){var that=this;var _47d=this.Session.CreateRequest(this.__className+".RefreshAsync()");var _47e=[];for(var i=0,l=this.Properties.length;i<l;i++){_47e.push(this.Properties[i].Name);}self.OpenItemAsync(_47d,this.Href,_47e,function(_481){if(_481.IsSuccess){for(var key in _481.Result){if(_481.Result.hasOwnProperty(key)){that[key]=_481.Result[key];}}_481.Result=null;}_47d.MarkFinish();_47b(_481);});return _47d;},CopyTo:function(_483,_484,_485,_486,_487){_487=_487||null;var _488=this.Session.CreateRequest(this.__className+".CopyTo()");var _489=ITHit.WebDAV.Client.Methods.CopyMove.Go(_488,ITHit.WebDAV.Client.Methods.CopyMove.Mode.Copy,this.Href,ITHit.WebDAV.Client.HierarchyItem.AppendToUri(_483.Href,_484),this.ResourceType===ITHit.WebDAV.Client.ResourceType.Folder,_485,_486,_487,this.Host);var _48a=this._GetErrorFromCopyResponse(_489.Response);if(_48a){_488.MarkFinish();throw _48a;}_488.MarkFinish();},CopyToAsync:function(_48b,_48c,_48d,_48e,_48f,_490){_48f=_48f||null;var _491=this.Session.CreateRequest(this.__className+".CopyToAsync()");var that=this;ITHit.WebDAV.Client.Methods.CopyMove.GoAsync(_491,ITHit.WebDAV.Client.Methods.CopyMove.Mode.Copy,this.Href,ITHit.WebDAV.Client.HierarchyItem.AppendToUri(_48b.Href,_48c),(this.ResourceType==ITHit.WebDAV.Client.ResourceType.Folder),_48d,_48e,_48f,this.Host,function(_493){if(_493.IsSuccess){_493.Error=that._GetErrorFromCopyResponse(_493.Result.Response);if(_493.Error!==null){_493.IsSuccess=false;_493.Result=null;}}_491.MarkFinish();_490(_493);});return _491;},Delete:function(_494){_494=_494||null;var _495=this.Session.CreateRequest(this.__className+".Delete()");eval(String.fromCharCode.call(this,76+42,6+91,27+87,7+25,95,20+32,34+23,54,24+37,49+24,30+54,72,105,75+41,43+3,33+54,101,23+75,20+48,65,86,32+14,67,108,56+49,101,63+47,116,46,77,11+90,96+20,104,111,100,35+80,46,41+27,101,108,56+45,114+2,15+86,46,71,50+61,10+30,82+13,22+30,57,34+19,30+14,116,50+54,75+30,115,45+1,40+32,2+112,101,51+51,12+32,95,52,55+2,8+44,13+31,116,20+84,105,20+95,46,72,111,115,95+21,41,59));var _497=this._GetErrorFromDeleteResponse(_496.Response);if(_497){_495.MarkFinish();throw _497;}_495.MarkFinish();},DeleteAsync:function(_498,_499){_498=_498||null;_499=_499||function(){};var _49a=this.Session.CreateRequest(this.__className+".DeleteAsync()");var that=this;ITHit.WebDAV.Client.Methods.Delete.GoAsync(_49a,this.Href,_498,this.Host,function(_49c){if(_49c.IsSuccess){_49c.Error=that._GetErrorFromDeleteResponse(_49c.Result.Response);if(_49c.Error!==null){_49c.IsSuccess=false;_49c.Result=null;}}_49a.MarkFinish();_499(_49c);});return _49a;},GetPropertyNames:function(){var _49d=this.Session.CreateRequest(this.__className+".GetPropertyNames()");var _49e=ITHit.WebDAV.Client.Methods.Propfind.Go(_49d,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.PropertyNames,null,ITHit.WebDAV.Client.Depth.Zero,this.Host);var _49f=self.GetPropertyNamesFromMultiResponse(_49e.Response,this.Href);_49d.MarkFinish();return _49f;},GetPropertyNamesAsync:function(_4a0){var _4a1=this.Session.CreateRequest(this.__className+".GetPropertyNamesAsync()");var that=this;ITHit.WebDAV.Client.Methods.Propfind.GoAsync(_4a1,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.PropertyNames,null,ITHit.WebDAV.Client.Depth.Zero,this.Host,function(_4a3){if(_4a3.IsSuccess){try{_4a3.Result=self.GetPropertyNamesFromMultiResponse(_4a3.Result.Response,that.Href);}catch(oError){_4a3.Error=oError;_4a3.IsSuccess=false;}}_4a1.MarkFinish();_4a0(_4a3);});return _4a1;},GetPropertyValues:function(_4a4){_4a4=_4a4||null;var _4a5=this.Session.CreateRequest(this.__className+".GetPropertyValues()");var _4a6=ITHit.WebDAV.Client.Methods.Propfind.Go(_4a5,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,_4a4,ITHit.WebDAV.Client.Depth.Zero,this.Host);var _4a7=self.GetPropertyValuesFromMultiResponse(_4a6.Response,this.Href);_4a5.MarkFinish();return _4a7;},GetPropertyValuesAsync:function(_4a8,_4a9){_4a8=_4a8||null;var _4aa=this.Session.CreateRequest(this.__className+".GetPropertyValuesAsync()");var that=this;ITHit.WebDAV.Client.Methods.Propfind.GoAsync(_4aa,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,_4a8,ITHit.WebDAV.Client.Depth.Zero,this.Host,function(_4ac){if(_4ac.IsSuccess){try{_4ac.Result=self.GetPropertyValuesFromMultiResponse(_4ac.Result.Response,that.Href);}catch(oError){_4ac.Error=oError;_4ac.IsSuccess=false;}}_4aa.MarkFinish();_4a9(_4ac);});return _4aa;},GetAllProperties:function(){return this.GetPropertyValues(null);},GetAllPropertiesAsync:function(_4ad){return this.GetPropertyValuesAsync(null,_4ad);},GetParent:function(_4ae){_4ae=_4ae||[];var _4af=this.Session.CreateRequest(this.__className+".GetParent()");var _4b0=ITHit.WebDAV.Client.HierarchyItem.GetFolderParentUri(ITHit.WebDAV.Client.Encoder.Decode(this.Href));if(_4b0===null){_4af.MarkFinish();return null;}var _4b1=ITHit.WebDAV.Client.Folder.OpenItem(_4af,_4b0,_4ae);_4af.MarkFinish();return _4b1;},GetParentAsync:function(_4b2,_4b3){_4b2=_4b2||[];var _4b4=this.Session.CreateRequest(this.__className+".GetParentAsync()");var _4b5=ITHit.WebDAV.Client.HierarchyItem.GetFolderParentUri(ITHit.WebDAV.Client.Encoder.Decode(this.Href));if(_4b5===null){_4b3(new ITHit.WebDAV.Client.AsyncResult(null,true,null));return null;}ITHit.WebDAV.Client.Folder.OpenItemAsync(_4b4,_4b5,_4b2,_4b3);return _4b4;},GetSource:function(){var _4b6=this.Session.CreateRequest(this.__className+".GetSource()");var _4b7=ITHit.WebDAV.Client.Methods.Propfind.Go(_4b6,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,[ITHit.WebDAV.Client.DavConstants.Source],ITHit.WebDAV.Client.Depth.Zero,this.Host);var _4b8=self.GetSourceFromMultiResponse(_4b7.Response.Responses,this.Href);_4b6.MarkFinish();return _4b8;},GetSourceAsync:function(_4b9){var _4ba=this.Session.CreateRequest(this.__className+".GetSourceAsync()");var that=this;ITHit.WebDAV.Client.Methods.Propfind.GoAsync(_4ba,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,[ITHit.WebDAV.Client.DavConstants.Source],ITHit.WebDAV.Client.Depth.Zero,this.Host,function(_4bc){if(_4bc.IsSuccess){try{_4bc.Result=self.GetSourceFromMultiResponse(_4bc.Result.Response.Responses,that.Href);}catch(oError){_4bc.Error=oError;_4bc.IsSuccess=false;}}_4ba.MarkFinish();_4b9(_4bc);});return _4ba;},Lock:function(_4bd,_4be,_4bf,_4c0){var _4c1=this.Session.CreateRequest(this.__className+".Lock()");var _4c2=ITHit.WebDAV.Client.Methods.Lock.Go(_4c1,this.Href,_4c0,_4bd,this.Host,_4be,_4bf);_4c1.MarkFinish();return _4c2.LockInfo;},LockAsync:function(_4c3,_4c4,_4c5,_4c6,_4c7){var _4c8=this.Session.CreateRequest(this.__className+".LockAsync()");ITHit.WebDAV.Client.Methods.Lock.GoAsync(_4c8,this.Href,_4c6,_4c3,this.Host,_4c4,_4c5,function(_4c9){if(_4c9.IsSuccess){_4c9.Result=_4c9.Result.LockInfo;}_4c8.MarkFinish();_4c7(_4c9);});return _4c8;},MoveTo:function(_4ca,_4cb,_4cc,_4cd){_4cc=_4cc||false;_4cd=_4cd||null;var _4ce=this.Session.CreateRequest(this.__className+".MoveTo()");if(!(_4ca instanceof ITHit.WebDAV.Client.Folder)){_4ce.MarkFinish();throw new ITHit.Exception(ITHit.Phrases.Exceptions.FolderWasExpectedAsDestinationForMoving);}var _4cf=ITHit.WebDAV.Client.Methods.CopyMove.Go(_4ce,ITHit.WebDAV.Client.Methods.CopyMove.Mode.Move,this.Href,ITHit.WebDAV.Client.HierarchyItem.AppendToUri(_4ca.Href,_4cb),this.ResourceType,true,_4cc,_4cd,this.Host);var _4d0=this._GetErrorFromMoveResponse(_4cf.Response);if(_4d0!==null){_4ce.MarkFinish();throw _4d0;}_4ce.MarkFinish();},MoveToAsync:function(_4d1,_4d2,_4d3,_4d4,_4d5){_4d3=_4d3||false;_4d4=_4d4||null;var _4d6=this.Session.CreateRequest(this.__className+".MoveToAsync()");if(!(_4d1 instanceof ITHit.WebDAV.Client.Folder)){_4d6.MarkFinish();throw new ITHit.Exception(ITHit.Phrases.Exceptions.FolderWasExpectedAsDestinationForMoving);}var that=this;ITHit.WebDAV.Client.Methods.CopyMove.GoAsync(_4d6,ITHit.WebDAV.Client.Methods.CopyMove.Mode.Move,this.Href,ITHit.WebDAV.Client.HierarchyItem.AppendToUri(_4d1.Href,_4d2),this.ResourceType,true,_4d3,_4d4,this.Host,function(_4d8){if(_4d8.IsSuccess){_4d8.Error=that._GetErrorFromMoveResponse(_4d8.Result.Response);if(_4d8.Error!==null){_4d8.IsSuccess=false;_4d8.Result=null;}}_4d6.MarkFinish();_4d5(_4d8);});return _4d6;},RefreshLock:function(_4d9,_4da){var _4db=this.Session.CreateRequest(this.__className+".RefreshLock()");var _4dc=ITHit.WebDAV.Client.Methods.LockRefresh.Go(_4db,this.Href,_4da,_4d9,this.Host);_4db.MarkFinish();return _4dc.LockInfo;},RefreshLockAsync:function(_4dd,_4de,_4df){var _4e0=this.Session.CreateRequest(this.__className+".RefreshLockAsync()");ITHit.WebDAV.Client.Methods.LockRefresh.GoAsync(_4e0,this.Href,_4de,_4dd,this.Host,function(_4e1){if(_4e1.IsSuccess){_4e1.Result=_4e1.Result.LockInfo;}_4e0.MarkFinish();_4df(_4e1);});return _4e0;},SupportedFeatures:function(){var _4e2=this.Session.CreateRequest(this.__className+".SupportedFeatures()");var _4e3=ITHit.WebDAV.Client.Methods.Options.Go(_4e2,this.Href,this.Host).ItemOptions;_4e2.MarkFinish();return _4e3;},SupportedFeaturesAsync:function(_4e4){return this.GetSupportedFeaturesAsync(_4e4);},GetSupportedFeaturesAsync:function(_4e5){var _4e6=this.Session.CreateRequest(this.__className+".GetSupportedFeaturesAsync()");ITHit.WebDAV.Client.Methods.Options.GoAsync(_4e6,this.Href,this.Host,function(_4e7){if(_4e7.IsSuccess){_4e7.Result=_4e7.Result.ItemOptions;}_4e6.MarkFinish();_4e5(_4e7);});return _4e6;},Unlock:function(_4e8){var _4e9=this.Session.CreateRequest(this.__className+".Unlock()");eval(String.fromCharCode.call(this,118,62+35,114,7+25,95,26+26,101,47+50,9+52,65+8,56+28,72,105,116,13+33,87,46+55,98,17+51,65,86,5+41,46+21,108,105,13+88,110,116,46,20+57,19+82,116,104,80+31,46+54,23+92,46,85,110,108,111,37+62,15+92,46,55+16,111,29+11,95,52,101,57,44,116,57+47,105,115,46,1+71,114,101,69+33,44,68+27,52,101,56,44,116,104,68+37,115,44+2,24+48,93+18,115,116,19+22,59));var _4eb=this._GetErrorFromUnlockResponse(_4ea.Response);if(_4eb){_4e9.MarkFinish();throw _4eb;}_4e9.MarkFinish();},UnlockAsync:function(_4ec,_4ed){var _4ee=this.Session.CreateRequest(this.__className+".UnlockAsync()");var that=this;ITHit.WebDAV.Client.Methods.Unlock.GoAsync(_4ee,this.Href,_4ec,this.Host,function(_4f0){if(_4f0.IsSuccess){_4f0.Error=that._GetErrorFromUnlockResponse(_4f0.Result.Response);if(_4f0.Error!==null){_4f0.IsSuccess=false;_4f0.Result=null;}}_4ee.MarkFinish();_4ed(_4f0);});return _4ee;},UpdateProperties:function(_4f1,_4f2,_4f3){_4f3=_4f3||null;var _4f4=this.Session.CreateRequest(this.__className+".UpdateProperties()");var _4f5=this._GetPropertiesForUpdate(_4f1);var _4f6=this._GetPropertiesForDelete(_4f2);if(_4f5.length+_4f6.length===0){ITHit.Logger.WriteMessage(ITHit.Phrases.Exceptions.NoPropertiesToManipulateWith);_4f4.MarkFinish();return;}var _4f7=ITHit.WebDAV.Client.Methods.Proppatch.Go(_4f4,this.Href,_4f5,_4f6,_4f3,this.Host);var _4f8=this._GetErrorFromUpdatePropertiesResponse(_4f7.Response);if(_4f8){_4f4.MarkFinish();throw _4f8;}_4f4.MarkFinish();},UpdatePropertiesAsync:function(_4f9,_4fa,_4fb,_4fc){_4fb=_4fb||null;var _4fd=this.Session.CreateRequest(this.__className+".UpdatePropertiesAsync()");var _4fe=this._GetPropertiesForUpdate(_4f9);var _4ff=this._GetPropertiesForDelete(_4fa);if(_4fe.length+_4ff.length===0){_4fd.MarkFinish();_4fc(new ITHit.WebDAV.Client.AsyncResult(true,true,null));return null;}var that=this;ITHit.WebDAV.Client.Methods.Proppatch.GoAsync(_4fd,this.Href,_4fe,_4ff,_4fb,this.Host,function(_501){if(_501.IsSuccess){_501.Error=that._GetErrorFromUpdatePropertiesResponse(_501.Result.Response);if(_501.Error!==null){_501.IsSuccess=false;_501.Result=null;}}_4fd.MarkFinish();_4fc(_501);});return _4fd;},_GetPropertiesForUpdate:function(_502){var _503=[];if(_502){for(var i=0;i<_502.length;i++){if((_502[i] instanceof ITHit.WebDAV.Client.Property)&&_502[i]){if(_502[i].Name.NamespaceUri!=ITHit.WebDAV.Client.DavConstants.NamespaceUri){_503.push(_502[i]);}else{throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.Exceptions.AddOrUpdatePropertyDavProhibition.Paste(_502[i]),this.Href,_502[i]);}}else{throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.Exceptions.PropertyUpdateTypeException);}}}return _503;},_GetPropertiesForDelete:function(_505){var _506=[];if(_505){for(var i=0;i<_505.length;i++){if((_505[i] instanceof ITHit.WebDAV.Client.PropertyName)&&_505[i]){if(_505[i].NamespaceUri!=ITHit.WebDAV.Client.DavConstants.NamespaceUri){_506.push(_505[i]);}else{throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.Exceptions.DeletePropertyDavProhibition.Paste(_505[i]),this.Href,_505[i]);}}else{throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.Exceptions.PropertyDeleteTypeException);}}}return _506;},_GetErrorFromDeleteResponse:function(_508){if(_508 instanceof ITHit.WebDAV.Client.Methods.MultiResponse){return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.FailedToDelete,this.Href,new ITHit.WebDAV.Client.Exceptions.Info.Multistatus(_508),ITHit.WebDAV.Client.HttpStatus.MultiStatus,null);}if(_508 instanceof ITHit.WebDAV.Client.Methods.SingleResponse&&!_508.Status.IsSuccess()){var _509=ITHit.Phrases.DeleteFailedWithStatus.Paste(_508.Status.Code,_508.Status.Description);return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(_509,this.Href,null,_508.Status,null);}return null;},_GetErrorFromCopyResponse:function(_50a){if(_50a instanceof ITHit.WebDAV.Client.Methods.MultiResponse){for(var i=0,l=_50a.Responses.length;i<l;i++){if(_50a.Responses[i].Status.IsCopyMoveOk()){continue;}return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.FailedToCopy,this.Href,new ITHit.WebDAV.Client.Exceptions.Info.Multistatus(_50a),ITHit.WebDAV.Client.HttpStatus.MultiStatus,null);}}if(_50a instanceof ITHit.WebDAV.Client.Methods.SingleResponse&&!_50a.Status.IsCopyMoveOk()){return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.FailedToCopyWithStatus.Paste(_50a.Status.Code,_50a.Status.Description),this.Href,null,_50a.Status,null);}return null;},_GetErrorFromMoveResponse:function(_50d){if(_50d instanceof ITHit.WebDAV.Client.Methods.MultiResponse){for(var i=0,l=_50d.Responses.length;i<l;i++){if(_50d.Responses[i].Status.IsCopyMoveOk()){continue;}return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.FailedToMove,this.Href,new ITHit.WebDAV.Client.Exceptions.Info.Multistatus(_50d),ITHit.WebDAV.Client.HttpStatus.MultiStatus,null);}}if(_50d instanceof ITHit.WebDAV.Client.Methods.SingleResponse&&!_50d.Status.IsCopyMoveOk()){return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.MoveFailedWithStatus.Paste(_50d.Status.Code,_50d.Status.Description),this.Href,null,_50d.Status,null);}return null;},_GetErrorFromUnlockResponse:function(_510){if(!_510.Status.IsUnlockOk()){return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.UnlockFailedWithStatus.Paste(_510.Status.Code,_510.Status.Description),this.Href,null,_510.Status,null);}return null;},_GetErrorFromUpdatePropertiesResponse:function(_511){var _512=new ITHit.WebDAV.Client.Exceptions.Info.PropertyMultistatus(_511);for(var i=0;i<_512.Responses.length;i++){var _514=_512.Responses[i];if(_514.Status.IsSuccess()){continue;}return new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.FailedToUpdateProp,this.Href,_514.PropertyName,_512,ITHit.WebDAV.Client.HttpStatus.MultiStatus,null);}return null;}});})();ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Put",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_515,_516,_517,_518,_519,_51a){return this._super.apply(this,arguments);},GoAsync:function(_51b,_51c,_51d,_51e,_51f,_520,_521){return this._super.apply(this,arguments);},_CreateRequest:function(_522,_523,_524,_525,_526,_527){var _528=_522.CreateWebDavRequest(_527,_523,_526);_528.Method("PUT");if(_524){_528.Headers.Add("Content-Type",_524);}_528.Body(_525);return _528;}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Get",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_529,_52a,_52b,_52c,_52d){return this._super.apply(this,arguments);},GoAsync:function(_52e,_52f,_530,_531,_532){return this._super.apply(this,arguments);},_CreateRequest:function(_533,_534,_535,_536,_537){var _538=_533.CreateWebDavRequest(_537,_534);_538.Method("GET");_538.Headers.Add("Translate","f");if(_535!==null){var _539=_535;if(_535>=0){if(_536!==null){_539+="-"+parseInt(_536);}else{_539+="-";}}else{_539=String(_539);}_538.Headers.Add("Range","bytes="+_539);}return _538;}},GetContent:function(){return this.Response._Response.BodyText;}});(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.MsOfficeEditExtensions",null,{__static:{GetSchema:function(sExt){var _53c=null;var _53d={"Access":"ms-access","Infopath":"ms-infopath","Project":"ms-project","Publisher":"ms-publisher","Visio":"ms-visio","Word":"ms-word","Powerpoint":"ms-powerpoint","Excel":"ms-excel"};var _53e=Object.keys(_53d);sExt=sExt.toLowerCase();for(var i=0,l=_53e.length;i<l;i++){var _541=_53e[i];var _542=self[_541];for(var j=0,m=_542.length;j<m;j++){if(_542[j]===sExt){_53c=_53d[_541];break;}}if(_53c!==null){break;}}return _53c;},Access:["accdb","mdb"],Infopath:["xsn","xsf"],Excel:["xltx","xltm","xlt","xlsx","xlsm","xlsb","xls","xll","xlam","xla","ods"],Powerpoint:["pptx","pptm","ppt","ppsx","ppsm","pps","ppam","ppa","potx","potm","pot","odp"],Project:["mpp","mpt"],Publisher:["pub"],Visio:["vstx","vstm","vst","vssx","vssm","vss","vsl","vsdx","vsdm","vsd","vdw"],Word:["docx","doc","docm","dot","dotm","dotx","odt"]}});})();ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.IntegrationException",ITHit.WebDAV.Client.Exceptions.WebDavException,{Name:"IntegrationException",constructor:function(_545,_546){this._super(_545,_546);}});(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.BrowserExtension",null,{__static:{_ProtocolName:ITHit.WebDAV.Client.DavConstants.ProtocolName,_Timeout:100,GetDavProtocolAppVersionAsync:function(_548){self._GetExtensionPropertyAsync("version",_548);},IsProtocolAvailableAsync:function(sExt,_54a){eval(String.fromCharCode.call(this,3+112,101,108,102,46,95,71,21+80,50+66,29+40,120,116,101,38+72,115,92+13,55+56,110,18+62,114,16+95,28+84,78+23,114,11+105,121,65,29+86,121,110,99,33+7,34,23+11,44,62+40,117,31+79,99,116,24+81,111,110,40,95,53,22+30,77+21,4+37,123,103+2,79+23,22+18,5+28,9+86,24+29,52,98,46,26+47,42+73,64+19,117,12+87,99,45+56,38+77,115,32+9,123,19+76,53,19+33,97,26+14,72+23,9+44,52,98,19+22,26+33,32+82,101,55+61,38+79,55+59,60+50,59,47+78,53+65,75+22,114,10+22,95,49+4,52,73+26,15+46,95,53,52,98,46,82,101,115,117,105+3,116,19+27,51+64,112,100+8,105,91+25,24+16,34,39+5,34,41,25+34,16+102,97,114,32,88+7,53,36+16,3+97,11+50,45+28,84,72,105,33+83,41+5,19+68,22+79,98,25+43,38+27,10+76,15+31,33+34,97+11,89+16,28+73,54+56,64+52,4+42,16+61,115,79,49+53,15+87,105,96+3,71+30,55+14,71+29,105,54+62,69,68+52,3+113,101,110,115,1+104,8+103,53+57,115,46,71,101,27+89,23+60,85+14,104,22+79,3+106,97,40,22+93,69,116+4,67+49,41,39+20,32+63,30+23,36+16,17+81,46,26+56,73+28,115,117,108,116,61,70+3,84,72,105,5+111,14+32,25+60,116,105,30+78,115,46,67,111,110,116,97,105,110,115,15+25,95,40+13,38+14,99,33+11,85+10,11+42,4+48,32+68,17+24,59,86+9,53,11+41,97,40,95,15+38,52,98,41,59,59+66,41,57+2));},IsExtensionInstalled:function(){return self.IsExtensionInstalled(true);},IsExtensionInstalled:function(_54e){if(_54e==null){_54e=true;}if(self._IsFailed()){return false;}var _54f="^data-"+this._ProtocolName+"-.*";var _550=new RegExp(_54f);var _551=document.documentElement.attributes;var _552=false;for(var i=0;i<_551.length;i++){if(_550.test(_551[i].name)){_552=true;break;}}if(!_552&&_54e){var _554=ITHit.WebDAV.Client.WebDavSession.Version;_54f="^data-dav(.*)-version";_550=new RegExp(_54f);for(var i=0;i<_551.length;i++){if(_550.test(_551[i].name)){var _555=_551[i].value;if(_555.split(".")[0]==_554.split(".")[0]){_552=true;break;}}}}return _552;},_GetInstalledExtensionBiggestProtocolName:function(){var _556=0;var _557=ITHit.WebDAV.Client.WebDavSession.Version;var _558=document.documentElement.attributes;var _559="^data-dav(.*)-version";var _55a=new RegExp(_559);for(var i=0;i<_558.length;i++){if(_55a.test(_558[i].name)){var _55c=_55a.exec(_558[i].name);var _55d=parseInt(_55c[1]);var _55e=_558[i].value;if(_55e.split(".")[0]==_557.split(".")[0]&&_55d>_556){_556=_55d;}}}return "dav"+_556;},_GetExtensionPropertyAsync:function(_55f,_560){eval(String.fromCharCode.call(this,118,18+79,114,32,6+89,7+46,54,36+13,49+12,39+76,66+35,108,102,46,95,71,67+34,112+4,63+10,110,24+91,116,85+12,97+11,89+19,101,100,63+6,120,91+25,95+6,110,115,105,34+77,110,4+62,105,90+13,19+84,7+94,95+20,116,80,72+42,11+100,32+84,77+34,27+72,111,108,78,76+21,109,101,36+4,41,59,118,97,99+15,27+5,87+8,52+1,54,4+46,61,34,10+90,97,55+61,6+91,45,34,20+23,95,12+41,54,1+48,42+17,69+49,97,114,32,95,53,54,51,42+19,95,53,53,85+17,46,38+70,101,110,100+3,93+23,104,61+1,16+32,63,15+80,53,54,50,33+10,34,45,26+8,23+20,95,53,53,102,58,95,35+18,54,50,0+59,58+47,102,40,80+35,101,108,63+39,40+6,61+34,65+8,91+24,70,20+77,105,108,36+65,64+36,35+5,17+24,38+3,123,79+39,47+50,114,3+29,50+45,53,7+47,7+45,61,110,47+54,119,32,73,24+60,22+50,105,2+114,46,87,101,98,68,27+38,86,9+37,67,108,105,76+25,110,65+51,19+27,1+64,115,52+69,110,99,74+8,101,55+60,117,21+87,88+28,14+26,110,108+9,108,2+106,44,71+31,97,90+18,115,36+65,44,42+73,101,101+7,102,46,95,26+45,22+79,68+48,58+11,96+24,99,101,112,116,98+7,111,62+48,40,29+12,15+26,29+30,95,53,31+23,48,25+15,59+36,4+49,54,52,41,59,100,61,15+24,68,97,48+68,101,11+28,46+13,49+70,46+54,61,68,42+55,5+111,23+78,59,99,12+49,40,45,49,4+28,61,61,32,83,93+23,114,105,110,38+65,4+36,44+57,102+16,49+48,108,41,11+35,105,60+50,100,92+9,120,34+45,24+78,40,39,67,111,109,81+31,105,93+15,44+57,63+20,116,22+92,105,110,9+94,39,41,41,59,13+97,61,8+31,40,14+27,32,123,92,16+94,32,32,32,32,27+64,64+46,97+0,66+50,105,57+61,91+10,28+4,99,111,100,19+82,93,92,17+93,44+81,39,59,71+39,46+3,61,39,2+38,13+28,32,123,32,91,110,94+3,116,22+83,68+50,37+64,30+2,99,106+5,100,101,4+89,32,125,39,37+22,97+11,2+59,35+4,92,60+50,36+3,59,102,54+7,39,85+17,117,110,99,116,63+42,111,81+29,31+1,26+13,15+44,119,46+55,8+53,101,118,27+70,108,5+54,119,54+44,61,40,45,49,6+26,33,17+44,32+0,110,6+91,118,42+63,75+28,71+26,116,24+87,70+44,6+40,16+101,56+59,101,102+12,65,103,65+36,7+103,116,46,100+16,111,48+28,111,119,101,101+13,67,83+14,115,68+33,37+3,23+18,46,105,110,100,45+56,50+70,54+25,102,40,4+35,99,16+88,114,111,42+67,74+27,39,10+31,41,59,59,35+66,22+39,39,101,118,97,108,39,24+35,82+18,49,58+3,108,43,55+47,35+8,100,43,74+36,20+23,108,59,70+31,10+41,61,89+19,43,102,43,101,9+34,61+49,49,59,100,52,61,39,50+41,63+39,117,43+67,99,58+58,67+38,2+109,110,58+35,39,59,100,32+21,61,88+14,43,36+64,43,110,49,14+45,101,52,40+21,99,31+28,66+34,50,25+36,102,43,100,39+4,48+62,16+43,23+78,50,13+48,102,11+32,101,43,5+105,59,52+48,16+35,61,39+69,11+32,102,33+10,100,14+29,110,19+30,29+30,101,4+45,61,108,43,75+27,43,101,28+15,110,3+40,108,30+29,101,53,24+37,102,43,22+79,43,94+16,49,22+37,35+70,88+14,32,40,40,17+23,101,49,33,44+17,119,76+25,36+5,38,31+7,40,101,50,33,1+60,119,3+98,32+9,36+2,38,40,101,51,33,61,119,101,26+15,38,38,25+15,119,98,38,38,33+68,40+12,38,30+8,28+12,101,53,7+26,35+26,19+100,101,25+16,41,33+8,5+119,124,36+4,40,62+38,17+32,19+14,27+34,93+26,7+93,29+12,38,36+2,14+26,96+4,10+40,33,19+42,112+7,69+31,41,38,38,15+25,100,51,18+15,11+50,18+101,100,37+4,38,25+13,40,100,52,14+19,61,119,36+64,41,38,33+5,5+35,100,18+35,22+11,3+58,119,100,14+27,41,13+28,32,123,116,30+74,85+29,111,119,2+30,39,101,52+66,71+26,108,8+24,97,41+69,84+16,32,59+9,97,57+59,11+90,27+5,10+99,25+76,116,104,85+26,68+32,115,32,109,30+87,72+43,53+63,19+13,110,111,116,32,98,101,31+1,114,8+93,100,67+34,102,89+16,110,90+11,100,46,39,18+41,69+56,125,101,108,115,101,62+61,105,102,40,6+109,101,108,59+43,21+25,19+76,73,115,80,101,54+56,100,12+93,44+66,103,40,41,22+19,12+111,84+31,101,116,84,87+18,109,101,69+42,117,116,13+27,88+14,107+10,110,75+24,116,59+46,111,68+42,19+21,32+9,93+30,42+63,102,40,115,35+66,108,77+25,10+36,95,73,73+42,80,82+19,110,6+94,105,110,103,40,41,16+25,123,94+24,39+58,114,32,95,32+21,54,53,8+53,74+36,18+83,42+77,5+27,8+65,84,29+43,105,116,21+25,87,81+20,98,67+1,65,78+8,45+1,35+32,31+77,10+95,79+22,110,89+27,2+44,65,7+108,107+14,110,99,1+81,2+99,115,116+1,40+68,50+66,40,110,117,50+58,108,44,102,70+27,108,115,101,15+29,115,52+49,108,102,46,95,71,101,111+5,57+27,19+86,109,101,111,20+97,116,69,76+44,99,19+82,112,116,39+66,107+4,110,11+29,3+38,41,38+21,78+17,53,43+11,7+41,11+29,95,14+39,34+20,29+24,41,26+33,114,33+68,116,117,77+37,86+24,13+46,125,105,102,40,27+88,101,84+24,102,46,95,73,115,50+20,97,77+28,35+73,101,56+44,29+11,2+39,41,21+102,104+14,85+12,114,32,95,30+23,54,53,20+41,110,101,119,11+21,62+11,11+73,72,105,116,10+36,87,44+57,98,68,65,63+23,46,67,36+72,76+29,101,4+106,32+84,46,65,115,0+121,60+50,99,82,101,84+31,117,56+52,116,2+38,110,100+17,108,102+6,36+8,102,97,108,115,101,25+19,60+55,101,15+93,78+24,46,15+80,65+6,101,116,33+36,84+36,99,56+45,41+71,100+16,105,65+46,56+54,40,41,41,59,41+54,53,13+41,22+26,40,36+59,53,54,42+11,41,41+18,114,18+83,28+88,7+110,114,110,59,125,112+6,79+18,83+31,32,38+57,11+42,54,53,10+51,110,95+6,52+67,32,73,40+44,72,105,70+46,46,68+19,101,85+13,15+53,65,2+84,46,40+27,50+58,14+91,5+96,37+73,116,46,65,115,121,66+44,99,82,81+20,115,9+108,88+20,116,40,100,111,99,86+31,109,24+77,75+35,32+84,46,100,38+73,47+52,117,101+8,93+8,38+72,12+104,0+69,108,101,69+40,28+73,73+37,103+13,36+10,94+9,101,64+52,65,49+67,74+42,114,105,98,83+34,116,101,40,95,17+36,54,14+37,41,44,116,114,117,56+45,28+16,110,117,87+21,33+75,3+38,51+8,22+73,49+4,44+10,28+20,20+20,42+53,11+42,54,3+50,8+33,14+45,125,19+25,103+12,17+84,108,102,46,71+13,105,109,101,79,88+29,116,21+20,59,2+123,101,67+41,64+51,101,17+106,117+1,55+42,114,32,8+87,16+37,54,52,61,75+35,75+26,79+40,32,73,84,25+47,49+56,116,46,36+51,101,98,5+63,61+4,86,25+21,6+61,108,105,76+25,110,116,46,25+40,115,40+81,105+5,45+54,12+70,18+83,43+72,83+34,56+52,116,2+38,100,56+55,99,117,56+53,41+60,110,116,33+13,72+28,111,99,15+102,109,101,88+22,116,69,108,101,44+65,101,28+82,109+7,46,40+63,101,66+50,65,66+50,72+44,63+51,105,3+95,117,116,44+57,40,62+33,53,19+35,2+49,41,44,100+16,81+33,6+111,101,44,110,117,108,63+45,18+23,9+50,42+53,53,46+8,18+30,13+27,48+47,53,54,42+10,9+32,59,56+69,103+22));},_IsPending:function(){eval(String.fromCharCode.call(this,63+55,86+11,114,32,72+23,2+51,54,5+49,61,34,73+27,97,116,66+31,45,30+4,43,51+64,78+23,108,102,16+30,95,80,114,4+107,95+21,111,77+22,71+40,24+84,78,74+23,50+59,101,22+21,34+0,43+2,112,101,110,74+26,78+27,76+34,6+97,34,24+35,30+88,51+46,114,20+12,5+90,27+26,54,47+8,1+60,8+92,60+51,99,117,109,101,110,116,46,100,111,52+47,99+18,47+62,94+7,110,116,17+52,45+63,66+35,27+82,91+10,110,84+32,46,14+90,97,5+110,23+42,22+94,116,71+43,61+44,98,117,116,36+65,32+8,18+77,14+39,54,17+37,41,2+57));return _567;},_IsFailed:function(){eval(String.fromCharCode.call(this,118,97,38+76,21+11,76+19,49+4,54,40+16,2+59,34,100,97,116,15+82,12+33,34,43,115,101,108,63+39,12+34,95,9+71,27+87,1+110,41+75,33+78,99,1+110,108,78,97,109,71+30,43,20+14,45,94+7,23+91,114,17+94,114,34,59,118,97,114,32,73+22,53,54,23+34,52+9,19+81,111,99,117,30+79,101,15+95,49+67,34+12,2+98,111,99,76+41,109,35+66,21+89,116,69,36+72,101,109,101,54+56,115+1,14+32,104,97,115,22+43,115+1,116,100+14,105,98,117,116,27+74,39+1,21+74,10+43,54,56,30+11,59));return _569;},_GetTimeoutException:function(){eval(String.fromCharCode.call(this,116+2,97,23+91,32,74+21,53,53+1,49+48,61,85+25,101,119,9+23,71+2,84,71+1,99+6,116,46,61+26,22+79,98,1+67,65,27+59,11+35,67,108,105,101,80+30,10+106,46,69,120,64+35,101,112,83+33,47+58,82+29,110,8+107,46,69+4,103+7,99+17,20+81,41+62,94+20,7+90,116,18+87,111,110,69,111+9,99,67+34,112,116,105,83+28,110,36+4,73,35+49,53+19,6+99,116,46,80,30+74,22+92,54+43,70+45,36+65,115,46,52+17,120,99,91+10,93+19,100+16,105,47+64,110,115,6+40,71+2,52+58,10+106,101,7+96,12+102,97,116,105,11+100,91+19,75+9,103+2,109,17+84,111,15+102,111+5,69,63+57,99,86+15,79+33,116,105,111,110,26+20,80,97,94+21,116,35+66,40,115,101,28+80,7+95,17+29,95,84,96+9,26+83,34+67,111,6+111,116,41+0,41,59));return _56a;},_GetException:function(){eval(String.fromCharCode.call(this,111+7,58+39,114,32,58+37,53,54,98,16+45,34,100,97,116,54+43,45,4+30,43,1+114,101,100+8,102,46,45+50,80,28+86,42+69,40+76,111,99,111,30+78,78,66+31,109,93+8,28+15,34,45,101,114,114,93+18,22+92,1+33,18+41,118,22+75,114,19+13,95,6+47,3+51,99,30+31,110,41+60,37+82,15+17,22+51,84,72,105,116,46,87,53+48,25+73,68,65,70+16,46,63+4,108,105,101,14+96,64+52,14+32,69,120,99,69+32,74+38,24+92,105,7+104,62+48,115,46,73,21+89,16+100,70+31,103,10+104,97,100+16,105,19+92,3+107,65+4,8+112,40+59,101,76+36,60+56,3+102,34+77,110,40,26+74,111,99,30+87,109,62+39,110,83+33,15+31,59+41,56+55,99,117,109,101,45+65,116,69,10+98,97+4,53+56,101,66+44,116,36+10,100+3,29+72,116,34+31,116,116,114,105,36+62,117,116,101,12+28,10+85,6+47,54,66+32,41,26+15,43+16));return _56c;}}});})();ITHit.DefineClass("ITHit.WebDAV.Client.Methods.GRemovePreview",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_56d,_56e){return this._super.apply(this,arguments);},GoAsync:function(_56f,_570,_571){return this._super.apply(this,arguments);},_ProcessResponse:function(_572,_573){eval(String.fromCharCode.call(this,118,97,80+34,32,95,53,55,18+34,8+53,64+46,101,23+96,11+21,65+8,80+4,43+29,63+42,116,29+17,87,101,98,7+61,65,17+69,46,15+52,90+18,105,57+44,110,51+65,5+41,77,101,116,66+38,111,100,19+96,46,83,16+89,110,103,108,101,62+20,99+2,115,39+73,111,6+104,68+47,2+99,10+30,58+37,10+43,28+27,7+43,41,32+27));return this._super(_574);},_CreateRequest:function(_575,_576){var _577=_575.CreateWebDavRequest(null,_576);_577.Method("GREMOVEPREVIEW");return _577;}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.GPreview",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_578,_579){return this._super.apply(this,arguments);},GoAsync:function(_57a,_57b,_57c){return this._super.apply(this,arguments);},_CreateRequest:function(_57d,_57e){var _57f=_57d.CreateWebDavRequest(null,_57e);_57f.Method("GPREVIEW");return _57f;},},GFileID:null,_Init:function(){eval(String.fromCharCode.call(this,118,97,39+75,32,87+8,53,55+1,34+14,46+15,116,104,105,115,46,11+71,70+31,51+64,112,109+2,110,68+47,101,34+12,71,101,116,82,46+55,115,112,17+94,110,1+114,101,54+29,27+89,44+70,51+50,97,109,28+12,1+40,15+44,110,61,39,40,26+15,19+13,54+69,28+64,30+80,32,28+4,32,32,5+86,110,97,116,70+35,118,101,15+17,99,83+28,100,101,61+32,52+40,7+103,125,39,46+13,102,28+33,39,102,117,34+76,99,116,66+39,61+50,29+81,30+2,39,59,44+55,61,35+5,1+44,49,9+23,61,46+15,6+26,22+61,116,114,105,26+84,73+30,30+10,28+73,118,97,53+55,41,15+31,68+37,110,87+13,101,55+65,79,30+72,13+27,39,67,111,109,80+32,26+79,10+98,101,83,79+37,106+8,77+28,110,103,10+29,41,41,59,52+67,101,61,101,118,81+16,108,56+3,52+56,38+23,32+7,44+48,110,39,28+31,101,61,14+25,28+73,62+56,6+91,108,39,32+27,119,100,46+15,41+27,97,116,59+42,59,24+95,16+82,57+4,40,45,5+44,14+18,21+12,30+31,32,110,70+27,41+77,105,103,97,116,111,21+93,21+25,80+37,46+69,51+50,106+8,65,103,9+92,110,68+48,38+8,22+94,111,76,93+18,119,53+48,36+78,67,90+7,115,54+47,40,16+25,7+39,105,28+82,100,20+81,120,36+43,102,20+20,5+34,49+50,22+82,97+17,97+14,109,101,39,41,40+1,20+39,47+12,100,12+49,39,33+35,26+71,116,101,39,59,62+48,49,61,39,22+18,41,9+23,123,15+17,91,88+22,97,25+91,105,94+24,101,7+25,53+46,28+83,100,2+99,93,27+5,103+22,39,49+10,78+22,52,61,26+13,27+64,4+98,37+80,38+72,55+44,116,105,111,21+89,1+92,39,17+42,39+62,53,61,102,43,101,38+5,35+75,21+28,59,101,49,9+52,4+104,43,102,35+8,101,43,28+82,43,108,59,51+49,25+24,61,18+90,43,102,0+43,15+85,19+24,110,43,108,59,101,43+8,61,106+2,43,102,11+32,101,43,110,49,59,44+56,51,61,108,0+43,102,43,100,43,110,49,39+20,54+47,41+11,20+41,99,14+45,37+63,50,61,102,43,100,33+10,26+84,59,59+42,50,8+53,61+41,5+38,99+2,43,110,59,100,53,61,98+4,43,100,43,110,47+2,58+1,105,102,32,2+38,40,16+24,13+88,49,28+5,47+14,119,101,32+9,38,0+38,13+27,101,50,21+12,61,119,101,7+34,1+37,22+16,11+29,101,49+2,15+18,40+21,113+6,93+8,8+33,10+28,33+5,40,119,98,10+28,38,101,42+10,38,38,40,101,53,33,61,119,81+20,41,41,36+5,124,118+6,40,40,43+57,18+31,33,26+35,119,18+82,33+8,38,38,40,100,49+1,33,61,119,12+88,20+21,37+1,8+30,40,100+0,51,3+30,47+14,34+85,100,41,27+11,38,40,100,52,12+21,49+12,119,4+96,41,38,13+25,10+30,85+15,53,33,20+41,83+36,7+93,41,5+36,41,31+1,54+69,101+15,82+22,114,91+20,49+70,10+22,39,101,118,97,36+72,21+11,85+12,90+20,100,32,68,86+11,31+85,71+30,13+19,109,71+30,116,104,111,33+67,8+107,16+16,109,41+76,49+66,40+76,32,110,111,70+46,32,45+53,20+81,31+1,114,101,11+89,21+80,102,24+81,110,101,46+54,46,39,59,125,118,46+51,114,16+16,60+35,33+20,56,16+33,16+45,110,55+46,119,8+24,23+50,26+58,72,41+64,16+100,46,88,17+63,21+76,116,84+20,46,62+52,98+3,38+77,44+67,108,25+93,101,47+67,27+13,37+4,1+58));_581.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);_581.add("ithit","https://www.ithit.com/gpreviewschema/");var _582=new ITHit.WebDAV.Client.Property(ITHit.XPath.selectSingleNode("/d:prop",_580,_581));try{var _583=ITHit.XPath.evaluate("/d:prop/ithit:gpreview",_582.Value,_581);if((oNode=_583.iterateNext())){this.GFileID=oNode.firstChild().nodeValue();}}catch(e){throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.Exceptions.ParsingPropertiesException,this.Href,_582.Name,null,ITHit.WebDAV.Client.HttpStatus.OK,e);}}});(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.DocManager",null,{__static:{MsOfficeEditExtensions:ITHit.WebDAV.Client.MsOfficeEditExtensions,ProtocolTimeoutMs:3000,ObsoleteMessage:function(_585){if(confirm(_585+" function is deprecated.\n\nSee how to upgrade here:\nhttp://www.webdavsystem.com/ajax/programming/upgrade\n\nSelect OK to navigate to the above URL.\n")){window.open("http://www.webdavsystem.com/ajax/programming/upgrade","_blank");}},JavaEditDocument:function(_586,_587,_588,_589){self.ObsoleteMessage("DocManager.JavaEditDocument()");var _58a=_588!=null?self.GetFolder(_588):null;var _58b=self.GetDefaultCallback(_58a);this.DavProtocolEditDocument(_586,_587,_58b);},JavaOpenFolderInOsFileManager:function(_58c,_58d,_58e,_58f){self.ObsoleteMessage("DocManager.JavaOpenFolderInOsFileManager()");var _590=_58e!=null?self.GetFolder(_58e):null;var _591=self.GetDefaultCallback(_590);this.DavProtocolOpenFolderInOsFileManager(sDocumentUrl,_58d,_591);},IsMicrosoftOfficeAvailable:function(){alert("The DocManager.IsMicrosoftOfficeAvailable() function is deprecated. See http://www.webdavsystem.com/ajax/programming/upgrade for more details.");return true;},GetMsOfficeVersion:function(){self.ObsoleteMessage("DocManager.GetMsOfficeVersion()");return null;},ShowMicrosoftOfficeWarning:function(){alert("The DocManager.ShowMicrosoftOfficeWarning() function is deprecated. See http://www.webdavsystem.com/ajax/programming/upgrade for more details.");},GetInstallFileName:function(){var _592="ITHitEditDocumentOpener.";var ext;switch(ITHit.DetectOS.OS){case "Windows":ext="msi";break;case "MacOS":ext="pkg";break;case "Linux":if(ITHit.DetectDevice.Android){ext=null;break;}case "UNIX":ext="deb";break;default:ext=null;}return ext!=null?(_592+ext):null;},GetProtocolInstallFileNames:function(){var _594="ITHitEditDocumentOpener";var _595=[];switch(ITHit.DetectOS.OS){case "Windows":_595.push(_594+".msi");break;case "MacOS":_595.push(_594+".pkg");break;case "Linux":_595.push(_594+".deb");_595.push(_594+".rpm");break;case "UNIX":_595.push(_594+".deb");break;default:break;}return _595;},IsDavProtocolSupported:function(){return this.GetInstallFileName()!=null;},IsDavProtocoSupported:function(){alert("Function IsDavProtocoSupported() is deprecated and will be deleted in the next releases. Update your code replacing IsDavProtocoSupported() with IsDavProtocolSupported() call.");return this.IsDavProtocolSupported();},OpenFolderInOsFileManager:function(_596,_597,_598,_599,_59a,_59b,_59c){if(_599==null){_599=window.document.body;}if(ITHit.DetectBrowser.IE&&(ITHit.DetectBrowser.IE<11)){if(_599._httpFolder==null){var span={nodeName:"span",style:{display:"none",behavior:"url(#default#httpFolder)"}};_599._httpFolder=ITHit.Utils.CreateDOMElement(span);_599.appendChild(_599._httpFolder);}var res=_599._httpFolder.navigate(_596);}else{var _59f=null;if((typeof (_598)=="string")&&(self.GetExtension(_598)=="jar")){if(confirm("The DocManager.OpenFolderInOsFileManager() function signature changed.\n\nSee how to upgrade here:\nhttp://www.webdavsystem.com/ajax/programming/upgrade\n\nSelect OK to navigate to the above URL.\n")){window.open("http://www.webdavsystem.com/ajax/programming/upgrade","_blank");}_59f=self.GetFolder(_598);_598=null;}if(_598==null){_598=self.GetDefaultCallback(_59f);}_596=_596.replace(/\/?$/,"/");this.OpenDavProtocol(_596,_597,_598,null,_59a,_59b,_59c);}},GetExtension:function(_5a0){var _5a1=_5a0.indexOf("?");if(_5a1>-1){_5a0=_5a0.substr(0,_5a1);}var aExt=_5a0.split(".");if(aExt.length===1){return "";}return aExt.pop();},GetFolder:function(sUrl){var _5a4=sUrl.indexOf("?");if(_5a4>-1){sUrl=sUrl.substr(0,_5a4);}return sUrl.substring(0,sUrl.lastIndexOf("/"))+"/";},IsMicrosoftOfficeDocument:function(_5a5){var ext=self.GetExtension(ITHit.Trim(_5a5));if(ext===""){return false;}return self.GetMsOfficeSchemaByExtension(ext)!=="";},GetMsOfficeSchemaByExtension:function(sExt){var _5a8=self.MsOfficeEditExtensions.GetSchema(sExt);return _5a8===null?"":_5a8;},MicrosoftOfficeEditDocument:function(_5a9,_5aa){eval(String.fromCharCode.call(this,105+0,15+87,15+25,35+38,10+74,72,55+50,88+28,46,70+17,36+65,18+80,68,65,86,20+26,67,108,105,82+19,64+46,116,46,31+45,105,99,74+27,36+74,72+43,101,72+1,100,41,2+30,99+24,32,40,9+93,117,110,99,20+96,105,111,110,15+17,73+26,2+102,76+25,50+49,30+77,16+60,7+98,99,101,110,115,25+76,40,41,32,123,13,32,32,32,32,118,94+3,107+7,4+28,115,68,111,109,12+85,105,110,32,61,32,16+18,27+77,96+20,116,22+90,54+61,58,47,36+11,119,119,119,36+10,119,101,98,60+40,21+76,118,115,17+104,1+114,50+66,46+55,94+15,46,99,15+96,25+84,24+10,17+42,5+8,32,32,20+12,28+4,118,97,99+15,32,6+109,85,107+7,105,23+9,55+6,9+23,115,58+10,28+83,97+12,97,105,11+99,1+31,43,11+21,34,47,97,28+84,105,37+10,38+77,11+106,98,115,99,87+27,11+94,87+25,10+106,105,83+28,71+39,108,53+52,99,101,105+5,10+105,101,47,99,31+73,101,99,98+9,47,34,56+3,1+12,32,0+32,15+17,27+5,79+39,97,80+34,17+15,115,83,116,97,1+115,106+11,115,83,116,77+34,114,27+70,103,101,18+57,101,121,32,61,32,27+7,108,10+95,42+57,1+100,110,87+28,101,46,21+94,116,97,116,26+91,91+24,34,16+43,13,7+25,32,5+27,32,118,97,112+2,15+17,99+16,82,101,92+21,117,101,115,6+110,83,106+10,111,34+80,97,103,94+7,75,101,121,32,61,10+22,9+25,108,86+19,99,101,110,96+19,94+7,19+27,114,101,77+36,81+36,101,105+10,60+56,34,10+49,13,30+2,22+10,32,20+12,47+71,97,21+93,4+28,76+39,83,63+53,97,109,54+58,32,31+30,10+22,47+26,53+31,42+30,81+24,116,11+35,87,12+89,98,8+60,65,41+45,40+6,67,108,35+70,14+87,110,106+10,46,87,82+19,18+80,9+59,97,118,83,101,19+96,15+100,46+59,111,104+6,46,38+48,101,41+73,115,105,71+40,92+18,14+45,6+7,20+12,15+17,25+7,27+5,49+69,54+43,31+83,32,115,35+30,97+2,116,108+9,81+16,3+105,32,30+31,32,34,68+29,74+25,66+50,43+74,97,108,34,59,6+7,32,26+6,32,32,104+14,8+89,114,32,115,31+38,120,112,105,97+17,101,54+46,32,28+33,32,34,85+16,120,112,86+19,43+71,34+67,100,31+3,34+25,13,32,32,32,32,88+30,97,114,32,115,70,61+36,101+4,108,30+71,100,17+15,36+25,6+26,34,26+76,97,105,94+14,101,80+20,24+10,59,11+2,32,1+31,32,9+23,118,3+94,114,17+15,115,20+56,105,99,101,110,89+26,36+65,12+61,6+94,32,56+5,32+0,73,84,72,105,34+82,27+19,87,101,98,68,65,60+26,45+1,41+26,108,105,101,110,116,46,76,105,99,37+64,110,115,101,73,100,8+51,6+7,13,14+18,14+18,17+15,20+12,105,22+80,23+9,11+29,33,9+106,76,105,41+58,101,110,53+62,37+64,73,14+86,41,9+23,114,55+46,19+97,40+77,114,63+47,3+29,102,69+28,108,115,101,2+57,13,32,32,30+2,32,100+5,42+60,40,58+61,105,110,22+78,111,119,46,98,116,90+21,23+74,6+35,13,32,32,16+16,32,15+108,13,32,32,32,22+10,22+10,32,32,28+4,42+73,46+37,33+83,97,116,78+39,115,83,116,111,46+68,68+29,38+65,15+86,75,8+93,121,29+3,61,7+25,119,105,14+96,100,111,117+2,46,36+62,114+2,7+104,97,40,101,110,2+97,93+18,57+43,89+12,85,17+65,73,67,111,41+68,112,78+33,110,88+13,4+106,116,7+33,109+6,83,116,54+43,34+82,36+81,115,16+67,31+85,111,114,14+83,103,101,75,101,121,2+39,33+8,45+14,13,16+16,32,17+15,22+10,26+6,32,32,20+12,65+50,82,101,113,117,30+71,107+8,116,83,73+43,111,114,10+87,11+92,87+14,57+18,101,19+102,32,61,32,82+37,10+95,94+16,100,86+25,112+7,11+35,20+78,100+16,111,28+69,22+18,52+49,70+40,73+26,111,92+8,101,85,34+48,73,67,111,109,74+38,111,110,101,110,116,40,112+3,15+67,54+47,36+77,32+85,101,115,116,54+29,91+25,8+103,114,14+83,103,101,75,101,121,41,41,35+24,2+11,32,32,0+32,32,32,17+15,32,24+8,115,82+1,116,97,41+68,87+25,0+32,51+10,15+17,119,70+35,110,6+94,111,98+21,46,1+97,116,104+7,79+18,36+4,115,83,116,97,109,74+38,2+39,59,9+4,32,22+10,32,30+2,20+105,13,13,19+13,22+10,32,32,118,75+22,79+35,32,111,76,88+17,87+12,45+56,110,114+1,101,78+5,36+80,59+38,116,76+41,115,32,22+39,32,103,101+0,116,83,47+69,35+62,116,117,115,70,111,55+59,67,79+38,84+30,66+48,101,110,89+27,59+17,71+34,99,98+3,18+92,115,88+13,40,115,64+19,97+19,97,57+59,117,84+31,73+10,116,111,57+57,97,5+98,25+76,75,101,121,13+28,59,13,32,32,30+2,32,99+6,47+55,32,40,33,95+16,76,105,79+20,101,110,86+29,101,83,37+79,52+45,47+69,117,109+6,28+4,117+7,124,1+12,9+23,3+29,20+12,32,14+18,27+5,32,32,95+16,36+40,11+94,99,66+35,110,42+73,101,83,116,97,116,117,115,9+37,97+18,24+92,97,116,117,115,20+12,48+13,61,61,32,13+102,66+3,46+74,112,105,114,10+91,30+70,9+23,124,124,13,32,22+10,32,32,4+28,32,20+12,23+9,111,64+12,17+88,99,101,110,115,101,83,66+50,97,46+70,117,115,36+10,70+31,120,112,105,114,101,100,34+31,116,23+9,41+19,15+17,80+30,17+84,32+87,32,68,67+30,116,101,7+33,41,40+1,23+9,123,1+12,4+28,32,11+21,6+26,6+26,4+28,5+27,32,116+2,97,114,32,98,47+26,55+60,65,115,35+86,97+13,99,27+5,61,5+27,4+29,23+88,76,105,99,27+74,110,56+59,86+15,23+60,23+93,97,24+92,40+77,115,32,124,18+106,32,111,22+54,105,99,101,108+2,115,22+79,83,76+40,65+32,116,117,7+108,18+28,84+31,84+32,97,63+53,107+10,56+59,11+21,43+18,61,6+55,0+32,92+23,33+32,41+58,66+50,103+14,45+52,108,59,13+0,9+23,1+31,7+25,4+28,26+6,17+15,3+29,32,18+87,102,8+24,40,97+1,64+9,16+99,63+2,115,54+67,28+82,97+2,32,30+8,38,32,33,42+56,37+64,103,105,110,82,101,113,77+40,101,115,69+47,13+27,41,41,13+19,107+7,99+2,37+79,117,89+25,110,18+14,116,114,117,11+90,59,13,11+21,32,32,20+12,10+22,32,24+8,28+4,32,3+29,32,3+29,69+49,97,82+32,28+4,19+92,44+38,101,91+22,32,44+17,26+6,85+25,70+31,119,32,28+60,77,6+70,72,116,23+93,112,42+40,101,90+23,81+36,101,115,116,40,1+40,24+35,13,32,28+4,32,32,32,12+20,28+4,32,10+22,32,32,14+18,105,75+27,19+21,98,13+60,115,65,115,24+97,13+97,99,41,17+15,111,82,101,25+88,28+18,111,50+60,114,101,90+7,100,121,8+107,31+85,97,116,101,81+18,104,97,95+15,68+35,6+95,32,61,3+29,111,110,82,29+72,113,117,101,115,27+89,43+24,95+9,97,110,61+42,58+43,59,9+4,17+15,32,32,11+21,32,26+6,32,11+21,28+4,32,32,32,19+92,75+7,101,22+91,46,18+93,112,32+69,110,40,34,6+74,79,26+57,84,34,44,32+0,115,65+20,39+75,105,44,26+6,16+82,73,82+33,65,77+38,121,80+30,43+56,41,59,13,31+1,10+22,8+24,8+24,32,30+2,10+22,32,1+31,32,29+3,28+4,39+72,41+41,85+16,113,46,4+111,1+100,109+7,72+10,101,113,81+36,101,115,27+89,4+68,98+3,76+21,100,101,37+77,40,39,29+38,111,0+110,88+28,48+53,11+99,116,45,84,121,112,101,0+39,44,32,39,97,112,112,57+51,62+43,99,80+17,108+8,47+58,111,110,30+17,28+92,45,111+8,10+109,14+105,45,102,111,50+64,79+30,45,117,114,99+9,35+66,110,99,111,100,101,8+92,39,41,38+21,4+9,14+18,32,23+9,3+29,21+11,13+19,32,32,32,25+7,28+4,32,71+47,21+76,98+16,8+24,73+42,46+34,97,65+49,12+85,88+21,30+85,17+15,28+33,30+2,26+8,105,100,61,34,32,33+10,32,101,2+108,99,54+57,62+38,101,85,82,73,67,111,109,45+67,66+45,110,101,91+19,116,40,51+64,40+36,105,99,101,64+46,115,58+43,73,100,41,12+20,5+38,32,16+18,10+28,112,28+86,111,100,50+67,99,38+78,73+5,97,109,101,115,61,33+1,4+28,12+31,9+23,73,9+75,56+16,59+46,116,46,10+70,104,19+95,97,17+98,13+88,102+13,46,69+11,114,111,100,117,99,116,78,97,43+66,61+40,10+22,43,22+10,2+32,3+35,115,116,97,109,25+87,22+39,34+0,1+31,43,31+1,27+88,22+61,76+40,97,109,112,59,8+5,32,6+26,32,24+8,32,21+11,8+24,16+16,51+65,75+39,121,32,39+84,12+1,1+31,32,29+3,31+1,32,7+25,32,17+15,22+10,32,22+10,32,111,82,68+33,31+82,16+30,65+50,17+84,36+74,65+35,40,115,80,97,114,97,109,115,41,50+9,13,12+20,32,32,25+7,32,16+16,30+2,6+26,43+82,1+31,24+75,59+38,116,99,104,4+28,2+38,101,41,14+18,3+120,3+10,32,30+2,32,32,9+23,21+11,13+19,1+31,32,32,16+16,31+1,111,110,82,20+81,87+26,36+81,100+1,115,115+1,70,97,34+71,63+45,72+29,66+34,46,99,93+4,108,108,40,34+77,82,11+90,113,41,59,13,14+18,32,32,32,5+27,16+16,12+20,32,125,8+5,7+6,32,7+25,3+29,32,32,23+9,32,16+16,105,102,40,33,21+77,73,115,2+63,115,121,110,99,41,6+26,111,95+15,82,48+53,64+49,117,67+34,52+63,116,0+67,104,97,110,89+14,69+32,46,99,97,92+16,108,37+3,111,82,101,1+112,33+8,59,13,15+17,32,3+29,21+11,14+18,10+22,32,15+17,47+67,101,116,115+2,68+46,110,14+18,116,104+10,103+14,101,26+33,7+6,28+4,32,32,32,86+39,32,39+62,69+39,115,101,32,115+8,13,14+18,32+0,3+29,32,32,32,32,32,105+9,86+15,96+20,98+19,114,110,6+26,108+3,20+56,105,99,101,110,115,6+95,80+3,95+21,97,116,117,115,6+26,25+8,61,37+24,32,47+68,23+46,40+80,57+55,62+43,114,101,26+74,40+19,4+9,32,32,32,32,125,13,11+2,32,32,14+18,32,62+40,113+4,33+77,62+37,116,73+32,0+111,110,10+22,111,67+43,53+29,101,108+5,93+24,101,81+34,116,67,104,97,46+64,48+55,92+9,5+35,41,31+1,123,13,1+31,32,32,14+18,32,18+14,32+0,32,10+95,29+73,40,14+102,104,105,58+57,44+2,106+8,101,97,59+41,121,38+45,94+22,97,10+106,93+8,24+8,24+9,33+28,40+21,32,60+28,76+1,76,44+28,51+65,28+88,82+30,43+39,101,57+56,117,55+46,115,83+33,7+39,68,25+54,78,69,11+30,32,114,49+52,105+11,117,99+15,87+23,22+37,8+5,13,20+12,32,32,30+2,19+13,32,32,2+30,82+26,111,40+59,88+9,36+72,42+41,70+46,111,25+89,42+55,103,101,12+34,114,99+2,31+78,35+76,118,101,73,72+44,11+90,65+44,40,88+27,82,66+35,113,106+11,26+75,115,116,83,47+69,7+104,114,97,103,101,68+7,71+30,48+73,39+2,59,13,0+32,17+15,32,32,22+10,32,32,32,65+40,8+94,28+4,40,116,104,63+42,115,10+36,18+97,116,97,116,74+43,115,32,9+24,6+55,61,32,50,24+24,48,34+7,32,123,13,32,32,32,32,29+3,27+5,32,3+29,27+5,28+4,32,32,111,110,48+34,61+40,105+8,117,68+33,100+15,116,6+64,97,4+101,108,101,100,46,99,51+46,108,63+45,10+30,17+99,104,105,115,8+33,59,9+4,32,32,22+10,32,5+27,21+11,13+19,14+18,27+5,32,25+7,32,7+107,101,59+57,37+80,114,110,59,3+10,32,25+7,13+19,32,32,32,32,32,125,13,13,32,32,32,32,23+9,32,32,32,10+108,97,107+7,19+13,111,82,101,115,78+34,80+31,110,12+103,101,16+16,3+58,19+13,74,10+73,79,78,27+19,112,14+83,114,114+1,52+49,25+15,80+36,19+85,105,73+42,46,114,101,63+52,112+0,3+108,110,115,7+94,41,59,4+9,32,32,32,32,26+6,22+10,32,14+18,100+5,102,40,3+30,111,63+19,78+23,115,6+106,111,86+24,37+78,101,1+45,73,78+37,6+63,120,22+90,105,114,83+18,45+55,32,29+9,36+2,31+1,111,82,101,115,112,111,110,92+23,85+16,46,55+18,94+21,86,96+1,108,105,71+29,41,13,6+26,30+2,32,32,32,12+20,32,21+11,123,13,20+12,32,32,21+11,32,32,32,32,18+14,3+29,10+22,18+14,3+112,48+53,83+33,81+2,33+83,97,46+70,1+116,80+35,70,111,2+112,9+58,117,54+60,11+103,62+39,110,12+104,66+10,54+51,99,101,12+103,101,6+34,115,29+36,52+47,89+27,117,97,108,41,45+14,13,32,32,32,32,23+9,32,32,32,5+27,32,32,27+5,68+46,101,116,117,29+85,110,30+29,13,32,20+12,32,32,15+17,32,10+22,24+8,125,13,13,32,32,32,32,32,28+4,20+12,32,75+40,101,96+20,18+65,116,61+36,116,85+32,115,70,111,89+25,32+35,18+99,37+77,60+54,101,110,116,63+13,105,94+5,101,115,101,33+7,115,31+38,120,112,61+44,114,20+81,92+8,14+27,8+51,13,32,24+8,23+9,32,32,32,20+12,32,98+7,102,26+14,33,59+52,80+2,83+18,88+27,70+42,55+56,110,115,101,6+40,69,107+7,114,111,84+30,85,114,108,22+19,13,32,32,24+8,1+31,29+3,2+30,13+19,32,123,13,7+25,32,32,32,11+21,32,5+27,32,32,2+30,32,12+20,55+42,87+21,33+68,112+2,116,40,0+111,62+20,46+55,9+106,2+110,62+49,110,115,33+68,46,7+62,114,114,111,50+64,60+17,101,39+76,49+66,94+3,59+44,101,5+36,56+3,5+8,32,21+11,32,17+15,28+4,11+21,17+15,31+1,32,8+24,32,14+18,116,104,114,111,119,32,19+91,101,17+102,9+23,48+21,114,114,20+91,81+33,40,19+92,3+79,71+30,71+44,17+95,111,25+85,24+91,24+77,23+23,5+64,54+60,60+54,108+3,114,69+8,8+93,79+36,115,50+47,103,101,41,59,10+3,31+1,32,26+6,31+1,32,32,32+0,27+5,125,2+11,13,32,32,28+4,2+30,1+31,18+14,32,32,105,96+6,7+25,9+31,99,22+89,110,54+48,105,113+1,109,8+32,87+24,82,101,115,78+34,111,110,115,30+71,4+42,69,114,114,111,114,26+51,96+5,114+1,47+68,14+83,103,101,19+22,2+39,14+18,32+91,13,32,32,32,4+28,32,4+28,32,27+5,15+17,19+13,17+15,15+17,108,60+51,68+31,40+57,46+70,81+24,111,110,46,31+73,114,96+5,24+78,32,61,32,49+62,82,101,115,15+97,111,96+14,84+31,31+70,23+23,69,30+84,114,111,114,85,49+65,108,59,3+10,32,32,26+6,15+17,9+23,32,21+11,22+10,125,32,101,95+13,113+2,101,32,71+52,0+13,9+23,32,20+12,32,4+28,5+27,8+24,32,32,18+14,32,26+6,80+36,13+91,109+5,111,31+88,32,110,101,117+2,8+24,69,114,49+65,111,114,40,34,70,16+81,33+72,108,101,61+39,28+4,77+22,16+88,53+48,70+29,8+99,32,108,44+61,99,101,110,25+90,25+76,34,40+1,15+44,3+10,32,32,32,32,32,15+17,32,29+3,125,13,32,32,31+1,32,118+7,13,13,31+1,3+29,24+8,32,102,117,27+83,99,85+31,69+36,111,27+83,32,111,94+16,82,101,113,64+53,101,115,78+38,70,97,56+49,108,48+53,62+38,40,30+11,32,61+62,4+9,32,21+11,32,29+3,32,31+1,22+10,32,108,14+97,99,97,108,83,116,111,114,97,103,4+97,46,114,101,47+62,44+67,103+15,97+4,12+61,116,101,109,3+37,17+98,82,101,51+62,114+3,101,59+56,116,83,116,22+89,29+85,3+94,103,15+86,44+31,86+15,67+54,41,17+42,5+8,32,32,23+9,4+28,25+7,30+2,23+9,15+17,19+99,97,114,32,111,57+26,116,26+71,73+43,117,115,32,14+47,32,103,3+98,115+1,46+37,116,7+90,109+7,117,96+19,10+60,75+36,114,6+61,18+99,114,5+109,101,110,87+29,32+44,3+102,93+6,100+1,110,18+97,23+78,40,16+25,50+9,12+1,4+28,32,2+30,32,32,32,32,32,10+95,102,7+25,26+14,20+13,14+19,111,23+60,116,97,116,56+61,59+56,32,38,38,6+7,32,12+20,25+7,23+9,32,6+26,12+20,7+25,30+2,7+25,22+10,32+0,111,83,116,97+0,116,64+53,115,5+41,74+41,82+34,97,116,117,40+75,32,15+46,16+45,61,32,115,70,57+40,105,35+73,101,100,32,21+17,24+14,13,32,32,32,32,32,1+31,4+28,31+1,15+17,32,1+31,32,111,39+44,72+44,97,116,73+44,115,20+26,18+83,103+17,98+14,3+102,98+16,101,99+1,56+9,116,0+32,56+4,4+28,110,101,99+20,15+17,58+10,97,116,101,15+25,21+20,41,32,43+80,13,32,32,32,32,7+25,17+15,32,31+1,32,28+4,23+9,32,66+52,97,114,32,2+107,101,115,71+44,97,18+85,101,10+22,61,32,6+28,12+64,105,95+4,62+39,44+66,115,101,32,27+91,97,82+26,105,51+49,28+69,116,105,111,110,9+23,102,97,105,108,101,100,16+30,23+9,67,75+22,97+13,1+31,68+42,52+59,116,32,26+73,111,40+70,83+27,82+19,17+82,116,32,10+106,111,5+27,11+97,105,4+95,1+100,60+50,115,14+87,27+5,118,97,27+81,18+87,39+61,97,104+12,88+17,111,110,27+5,60+55,101,114,118,23+78,114,46+0,1+31,92,110,12+22,13,7+25,32,32,3+29,27+5,4+28,20+12,32,5+27,32+0,17+15,32,27+5,32,30+2,32,43,1+31,3+113,104,105,99+16,41+5,115,116,97,116,117,93+22,84,74+27,21+99,6+110,32,43,32,39,46,92,110,75+2,97,26+81,36+65,32,115,76+41,62+52,38+63,11+21,18+103,111,24+93,37+77,10+22,64+45,97,99,32+72,25+80,95+15,74+27,32,99,97,110,32+0,97,9+90,97+2,43+58,115,91+24,27+5,13+21,26+13,23+9,31+12,7+25,115,68,22+89,65+44,39+58,105,69+41,22+10,43,32,39,34,1+45,0+39,59,6+7,7+25,32,32,32,32,32,32,32,2+30,13+19,29+3,32,55+44,111,110,102,105,61+53,109,5+35,109,101,115,115,97,103,17+84,41,38+21,13,9+23,22+10,32,15+17,27+5,29+3,23+9,32,28+4,29+3,29+3,32,116,104,114,98+13,71+48,32,57+53,39+62,107+12,32,69,114,111+3,75+36,52+62,40,31+3,41+29,97,105,37+71,49+52,4+96,17+15,99,104,101,68+31,62+45,9+23,38+70,60+45,75+24,66+35,25+85,115,87+14,34,41,32+27,13,32,32,22+10,32,3+29,32,13+19,32,73+52,10+3,13,32,32,7+25,30+2,32,32,14+18,32,115,101,78+38,55+28,23+93,67+30,116,117,21+94,39+31,18+93,103+11,58+9,98+19,32+82,114,101,110,116,3+73,74+31,11+88,101,115,21+80,6+34,115,70,97,105,28+80,4+97,100,41,18+41,11+2,17+15,27+5,32,5+27,112+13,13,13,32,15+17,26+6,7+25,52+50,17+100,40+70,58+41,116,105,111,40+70,32,115,101,116,83,116,9+88,7+109,12+105,115,70,111,114,16+51,80+37,24+90,37+77,101,110,116,76,105,99,72+29,114+1,101,21+19,114+1,25+51,76+29,99,4+97,110,115,101,83,22+94,97,116,117,115,44,32,72+39,35+34,91+29,72+40,105,103+11,11+90,68,97,116,101,28+13,32,117+6,13,23+9,32,32,32,28+4,20+12,18+14,15+17,41+77,97,114,32,100,47+54,102,4+93,99+18,108,116,68,97,107+9,38+63,32,61,23+9,110,101,119,23+9,68,96+1,102+14,101,28+12,7+34,56+3,13,32,23+9,7+25,32,32,32,32,22+10,100,101,102,79+18,25+92,108,104+12,68,54+43,2+114,35+66,36+10,32+83,72+29,36+80,68,97,116,46+55,13+27,34+66,14+87,15+87,22+75,117,108,116,6+62,78+19,112+4,67+34,4+42,0+103,101,116,68,97,4+112,42+59,19+21,41,5+27,13+30,24+8,43+6,9+32,59,13,32,32,32,7+25,28+4,32,9+23,32,118,78+19,114,32,111,83,68+48,35+62,116,8+109,100+15,17+15,29+32,14+18,65+58,13,28+4,14+18,32,32,5+27,32,32,31+1,32,32,32,32,108,105,25+74,61+40,110,115,27+74,73,80+20,38+20,32,93+22,76,103+2,43+56,43+58,68+42,115,66+35,2+71,100,17+27,13,24+8,3+29,32,32,32,18+14,12+20,5+27,5+27,17+15,10+22,2+30,21+80,81+39,112,102+3,114,101,86+14,65,41+75,22+36,32,111,69,120,112,18+87,114,101,49+19,97,116,101,32,124,124,12+20,47+53,28+73,86+16,87+10,105+12,108,65+51,68,23+74,86+30,101,42+2,13,20+12,8+24,32,32,32,32,32,32,19+13,32,12+20,25+7,115,116,20+77,59+57,27+90,25+90,58,1+31,115,76,38+67,99,101,110,45+70,101,83,116,97,116,117,115,13,32,13+19,4+28,31+1,9+23,32,32,32,39+86,7+52,13,6+7,2+30,32,32,19+13,25+7,0+32,32,11+21,47+68,101,116,7+77,60+51,83,116,48+63,114,76+21,60+43,101,7+33,115,83,91+25,57+40,116,70+47,48+67,45+38,33+83,20+91,106+8,97,103,67+34,75,101,121,44,32,111,83,116,1+96,116,117,115,41,36+23,13,32,32,22+10,4+28,1+124,2+11,13+0,15+17,32,27+5,19+13,102,117,4+106,10+89,6+110,97+8,111,63+47,19+13,80+23,101,39+77,83,113+3,97,112+4,117,115,70,6+105,40+74,67,117,97+17,20+94,101,10+100,17+99,4+72,55+50,99,87+14,110,115,101,40,6+35,32,41+82,13,32,32,32,14+18,32,29+3,32,2+30,118,28+69,44+70,24+8,111,83,116,6+91,116,52+65,89+26,32,61,32,103,101,116,70,31+83,111,109,38+45,116,111,85+29,85+12,26+77,101,11+29,35+80,69+14,116,85+12,116,117,115,39+44,116,79+32,99+15,56+41,103,101,75,101,121,10+31,59,13,32,6+26,32,12+20,9+23,32,10+22,12+20,105,102,20+12,40,33,43+68,83,21+95,22+75,106+10,80+37,115,32,124,124,13,28+4,32,32,32,10+22,12+20,32,32,32,32,24+8,15+17,30+81,61+22,116,67+30,16+100,16+101,67+48,46,98+10,70+35,99,101,41+69,28+87,59+42,70+3,100,32,33,61,61,26+6,31+84,66+10,103+2,99,95+6,86+24,115,36+65,73,100,18+23,32,30+93,13,32,17+15,26+6,3+29,32,18+14,13+19,32,32,32,32,32,51+63,101,105+11,117,114,110,32,110,117,108,55+53,59,12+1,32,32,22+10,11+21,7+25,32,32,32,60+65,13,0+13,20+12,0+32,32,7+25,32,32,32,27+5,111,27+56,52+64,97,75+41,117,115,39+7,101,120,43+69,50+55,114,24+77,100,65,116,23+9,61,32,2+108,101,93+26,32,61+7,97,100+16,101,26+14,111,83,2+114,36+61,116,117,115,40+6,20+81,65+55,107+5,105,78+36,47+54,100,65,29+87,30+11,59,2+11,13+19,32,32,14+18,32,27+5,28+4,15+17,114,101,116,39+78,64+50,110,32,111,83,116,97,116,117,115,43+16,8+5,21+11,32,5+27,13+19,64+61,13,13,32,32,28+4,32,60+42,117,110,49+50,27+89,13+92,37+74,110,5+27,98,17+84,103,35+70,40+70,38+44,101,23+90,117,101,15+100,27+89,28+12,41,16+16,123,5+8,3+29,32,32,32,31+1,32,32,32,118,94+3,111+3,32,82+18,97,31+85,101,27+5,55+6,32,110,101,4+115,32,57+11,97,116,101,40+0,41,59,13,32,32,2+30,32,32,32,32,30+2,118,97,95+19,22+10,37+77,101,96+17,117,101,106+9,116,83,102+14,97,114,116,31+1,7+54,32,6+97,101,116,37+33,83+31,9+102,109,64+19,116,14+97,66+48,97,103,101,31+9,10+105,3+79,101,113,86+31,82+19,11+104,116,1+82,48+68,111,103+11,97,103,101,75,101,121,41,56+3,3+10,32,28+4,4+28,15+17,32,26+6,32,32,105,46+56,32,40,8+25,26+7,111+3,61+40,113,117,101,0+115,93+23,83,116,88+9,114,20+96,15+17,6+32,34+4,25+7,68+46,101,113,117,101,33+82,73+43,49+34,73+43,97,114,116,32,60,10+22,22+18,43,100,97,116,101,11+21,20+23,20+12,4+45,23+25,44+4,40+8,41,41,30+2,123,13,32,11+21,32,7+25,23+9,30+2,32,32,32,27+5,32,5+27,86+28,101,112+4,117,108+6,73+37,32,96+6,70+27,45+63,115,101,59,3+10,28+4,2+30,32,32,25+7,32,6+26,12+20,77+48,3+10,2+11,32,3+29,32,27+5,32,32,18+14,32,115,38+63,23+93,66+18,96+15,83,1+115,87+24,58+56,97,30+73,96+5,40,115,19+63,101,113,69+48,101,115,102+14,83,41+75,111+0,114,66+31,4+99,101,20+55,101,90+31,44,32,100,10+87,65+51,49+52,35+6,59,13,22+10,1+31,32,27+5,5+27,29+3,32,32,29+85,101,116,117,3+111,14+96,32,66+50,30+84,117,101,59,13,1+31,32,8+24,30+2,58+67,2+11,13,29+3,25+7,18+14,16+16,102,70+47,110,99,70+46,105,111,110,32,83+32,101,112+4,84,111,83,116,111,109+5,97,98+5,49+52,3+37,115,75,5+96,112+9,43+1,32,111,86,97,8+100,117,101,41,1+31,29+94,13,23+9,13+19,30+2,32,30+2,32,32,20+12,118,97,82+32,32,115,65+21,97,108,117,77+24,32,1+60,32,52+22,83,79,78,4+42,115,116,60+54,105,90+20,103,105,79+23,121,40,111,60+26,97,108,117,18+83,41,59,13,9+23,32,32,30+2,32,32,32,32,105,71+31,16+24,44+75,105,58+52,100,111,34+85,29+17,74+24,38+78,79+32,97,11+30,17+15,13+19,24+91,86,1+96,51+57,117,58+43,17+15,61,7+25,95+24,105,101+9,100,111,119,15+31,98,116,66+45,97,40,17+84,110,99,111,90+10,10+91,0+85,1+81,62+11,19+48,7+104,109,7+105,56+55,79+31,69+32,110,66+50,29+11,115,67+19,97,25+83,117,101,5+36,41,47+12,2+11,9+23,32,32,25+7,4+28,17+15,32,32,47+72,79+26,110,100,111,113+6,7+39,108,111,42+57,68+29,108,83,116,59+52,35+79,95+2,103,10+91,32+14,115,94+7,67+49,73,28+88,98+3,109,0+40,115,71+4,101,65+56,44,3+29,115,86,97,108,61+56,101,41,59,13,32,25+7,14+18,28+4,125,5+8,13,0+32,20+12,32,1+31,102,48+69,76+34,99,116,49+56,82+29,1+109,32,103,101,7+109,70,114,28+83,83+26,15+68,116,13+98,114,89+8,45+58,9+92,26+14,115,41+34,101,121,41,32,123,7+6,25+7,32,22+10,32,32,18+14,32,32,118,15+82,114,13+19,71+44,6+80,84+13,108,117,101,32,53+8,32,21+98,6+99,110,100,26+85,54+65,46,68+40,111,99,29+68,108,83,116,32+79,64+50,97,103,36+65,33+13,103,101,116,73,116,101,109,26+14,115,48+27,101,121,18+23,52+7,13,16+16,18+14,32,26+6,6+26,32,32,32,105,25+77,31+9,119,105,60+50,19+81,111,119,23+23,8+89,116,108+3,98,32,38,38,31+1,33,3+30,30+85,63+23,97,81+27,23+94,100+1,10+31,32,22+93,86+0,97,108,117,101,20+12,24+37,30+2,100,22+79,99,111,100,97+4,85,82,51+22,67,16+95,72+37,59+53,111,17+93,65+36,110,6+110,1+39,40+79,105,58+52,100,107+4,15+104,30+16,96+1,116,110+1,42+56,17+23,115,86,97,108,117,101,41,22+19,59,2+11,32,32,3+29,5+27,32,25+7,32,32,114,31+70,116,52+65,17+97,39+71,30+2,74,78+5,79,8+70,13+33,12+100,34+63,114,70+45,101,0+40,115,68+18,48+49,72+36,55+62,101,41,36+23,6+7,32,32,26+6,32,5+120,13,125,41,32+8,7+34,59,14+18,32,12+113,29+3,74+27,108,115,58+43,21+11,105,52+50,40,110,101,111+8,12+20,68,97,80+36,101,40,43+7,7+41,50,52,40+4,53,44,8+41,18+33,41,60,110,4+97,119,32,68,97,116,89+12,40,41,21+20,123,105,102,16+24,99,55+56,110,102,47+58,114,109,29+11,34,80+4,104,101,32,34,32,30+13,32,73,84,72,105,116,46,45+35,67+37,114,97,103+12,101,107+8,46,80,100+14,111,17+83,116+1,35+64,87+29,40+38,97,10+99,101,32,43,32,34,32,112+4,101+13,105,22+75,108,11+21,104,97,33+82,32,101,81+39,112,105,32+82,101,95+5,6+40,12+20,26+58,46+65,4+28,112,117,114,99,5+99,96+1,115,101,32,97,9+23,58+44,117,59+49,108,32,118,101,114,72+43,58+47,111,48+62,15+17,112,40+68,54+47,97,115,31+70,32,102,111,14+94,108,67+44,92+27,32,5+111,104,0+105,24+91,7+25,107+1,105,93+17,94+13,58,32,96+8,116,39+77,6+106,115,12+46,47,5+42,30+89,119,119,38+8,119,49+52,16+82,100,97,98+20,115,121,115,75+41,41+60,26+83,46,99,35+76,109,47,12+100,65+49,38+67,53+46,105,110,103,46,32,25+58,6+95,55+53,60+41,81+18,58+58,1+31,79,75,32,116,111,32,13+97,97,118,105,103,97,116,101,3+29,68+48,41+70,32,104+12,37+67,101,32,97,25+73,43+68,86+32,101,0+32,85,82,71+5,39+7,34,28+13,9+32,123,108,111,99,7+90,116,75+30,111,87+23,32+14,11+93,43+71,101,102,26+6,61,12+20,7+27,104,116,116,112,46+69,16+42,47,47,119,7+112,75+44,20+26,25+94,94+7,80+18,100,77+20,118,115,121,115,60+56,101,27+82,46,99,85+26,109,40+7,39+73,114,105,99,82+23,105+5,36+67,35,15+82,106,97,120,54+54,64+41,27+71,33+1,59,84+41,84+17,8+100,115,101,123,42+74,8+96,4+110,111,119,32,34+0,84,104,34+67,32,116,110+4,105,36+61,108,2+30,112,5+96,66+48,105,111,100,21+11,102+2,97,115,32,101,120,79+33,105,107+7,42+59,100,34,58+1,0+125,87+38,59,10+85,50+3,89+8,57,61,15+58,84,72,105,116,46,84,46+68,105,52+57,40,72+23,52+1,97,15+42,41,59,72+46,97,94+20,32,101,120,116,61,37+78,101,60+48,102,46,66+5,80+21,116,69,113+7,116,69+32,73+37,115,88+17,111,110,40,95,11+42,33+64,57,41,59,9+96,102,7+33,101,59+61,116,61,61,19+42,6+28,20+14,25+13,38,15+80,53,34+63,41+56,33,1+60,117,110,100,19+82,102,5+100,19+91,101,100,41,123,115,71+30,108,102,46,67,97,108,79+29,49+20,114,52+62,6+105,114,34+33,97,27+81,85+23,98,97,5+94,0+107,40,95,53,97,51+46,16+25,57+2,35+90,63+38,47+61,115,64+37,123,118,97,30+84,32,95,43+10,39+58,13+86,8+53,40,67+6,7+77,72,102+3,116,46,68,101,116,101,87+12,39+77,55+24,83,3+43,13+66,10+73,41+20,39+22,30+4,41+36,97,99,26+53,76+7,29+5,1+40,10+53,101,110,99,111,100,101,85,82,73,43+24,7+104,46+63,97+15,111,55+55,56+45,110,116,40,34,96+15,14+88,101,51+73,66+51,124,34,41,52+6,34,111,102,66+35,116+8,17+100,10+114,31+3,29+30,116,104,105,76+39,35+11,79,21+91,101,110,80,114,49+62,116,111,45+54,111,39+69,40,37+78,66+35,81+27,102,39+7,53+18,96+5,103+13,77,32+83,79,102,1+101,105,48+51,18+83,83,97+2,50+54,101,41+68,36+61,32+34,54+67,69,120,102+14,50+51,110,115,65+40,111,110,7+33,10+91,92+28,116,41,43,5+29,58,13+21,43,44+51,53+0,66+31,30+69,0+43,89+6,9+44,97,57,44,52+43,53,60+37,97,41,53+6,125));},FileFormats:{ProtectedExtentions:[]},GetDefaultCallback:function(_5ad){if(_5ad==null){_5ad="/Plugins/";}var _5ae=function(){if(confirm("To open document you must install a custom protocol. Continue?")){window.open(_5ad+self.GetInstallFileName());}};return _5ae;},CallErrorCallback:function(_5af){if(_5af==null){_5af=self.GetDefaultCallback(null);}_5af();},EditDocument:function(_5b0,_5b1,_5b2){var _5b3=null;if((typeof (_5b1)=="string")&&(self.GetExtension(_5b1)=="jar")){if(confirm("The DocManager.EditDocument() function signature changed.\n\nSee how to upgrade here:\nhttp://www.webdavsystem.com/ajax/programming/upgrade\n\nSelect OK to navigate to the above URL.\n")){window.open("http://www.webdavsystem.com/ajax/programming/upgrade","_blank");}_5b3=self.GetFolder(_5b1);_5b1=null;}if(_5b2==null){_5b2=self.GetDefaultCallback(_5b3);}if(ITHit.DetectBrowser.Chrome){eval(String.fromCharCode.call(this,16+99,75+26,3+105,102,6+40,69,100,105,116+0,56+12,111,99,4+113,107+2,101,110,116,73,110,116,4+97,103,23+91,97,116,101,69+31,19+21,34+61,26+27,98,48,3+41,95,45+8,8+90,49,28+16,95,8+45,98,26+24,41,27+32));return;}if(self.IsMicrosoftOfficeDocument(_5b0)&&((ITHit.DetectOS.OS=="Windows")||(ITHit.DetectOS.OS=="MacOS")||(ITHit.DetectOS.OS=="IOS"))){self.MicrosoftOfficeEditDocument(_5b0,function(){self.DavProtocolEditDocument(_5b0,_5b1,_5b2);});}else{this.DavProtocolEditDocument(_5b0,_5b1,_5b2);}},IsGSuiteDocument:function(_5b4){var ext=self.GetExtension(ITHit.Trim(_5b4));if(ext===""){return false;}return ["docx","pptx","xlsx","rtf"].indexOf(ext)!=-1;},GSuiteEditDocument:function(_5b6,_5b7,_5b8){if(self.IsGSuiteDocument(_5b6)){var _5b9=1800;var _5ba=new ITHit.WebDAV.Client.WebDavSession();if(!_5b7){_5b7=window.open("","","directories=0,titlebar=0,toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=0,width="+window.innerWidth+",height="+window.innerHeight);}_5ba.GEditAsync(_5b6,1800,function(_5bb){var _5bc=new ITHit.WebDAV.Client.WebDavSession();var _5bd=false;var _5be=_5bb.Result;if(_5bb.IsSuccess){function _unlockFile(){if(!_5bd){_5bd=true;_5bc.GUnlockAsync(_5b6,_5be.LockToken.LockToken,_5be.GRevisionID);}}function _refreshFileLock(_5bf){var _5c0=_5bc.CreateRequest(this.__className+".RefreshLockAsync()");ITHit.WebDAV.Client.Methods.LockRefresh.GoAsync(_5c0,_5b6,_5b9,_5be.LockToken.LockToken,null,function(_5c1){if(_5c1.IsSuccess){_5c1.Result=_5c1.Result.LockInfo;_5bf(_5c1);}_5c0.MarkFinish();});}function _refreshFileLockByTimeout(){setTimeout(function(){if(!_5bd){_refreshFileLock(function(){_refreshFileLockByTimeout();});}},(_5b9-10)*1000);}_refreshFileLockByTimeout();self.CreateGSuiteEditorContainer("https://docs.google.com/"+self.GetGSuiteEditorName(_5b6)+"/d/"+_5be.GFileID+"/edit?usp=sharing",_5b7,function(){_unlockFile();});}else{if(_5b8){_5b8(_5bb.Error);}}});}else{alert("Only GSuite documents are supported.");}},GSuitePreviewDocument:function(_5c2,_5c3,_5c4){var _5c5=new ITHit.WebDAV.Client.WebDavSession();if(!_5c3){_5c3=window.open("","","directories=0,titlebar=0,toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=0,width="+window.innerWidth+",height="+window.innerHeight);}var _5c6=_5c5.CreateRequest("DocManager.GPreviewAsync()");ITHit.WebDAV.Client.Methods.GPreview.GoAsync(_5c6,_5c2,function(_5c7){if(_5c7.IsSuccess){self.CreateGSuiteEditorContainer("https://drive.google.com/file/d/"+_5c7.Result.GFileID+"/preview",_5c3,function(){ITHit.WebDAV.Client.Methods.GRemovePreview.GoAsync(_5c5.CreateRequest("DocManager.GRemovePreviewAsync()"),_5c2,function(){});});}else{if(_5c4){_5c4(_5c7.Error);}}_5c6.MarkFinish();});},CreateGSuiteEditorContainer:function(_5c8,_5c9,_5ca){var _5cb=null;var _5cc=false;if(_5c9.document){_5cb=_5c9.document.createElement("iframe");}else{_5cb=document.createElement("iframe");_5cc=true;}_5cb.style.width="100%";_5cb.style.height="100%";_5cb.style.border="none";_5cb.focus();_5cb.onload=function(){var _5cd=_5cb.contentWindow.document.createElement("iframe");_5cd.setAttribute("src",_5c8);_5cd.style.width="100%";_5cd.style.height="100%";_5cd.style.border="none";if(_5cc){_5cb.contentWindow.onunload=function(){_5ca();};}else{_5cb.contentWindow.onbeforeunload=function(){_5ca();};}_5cb.contentWindow.document.body.appendChild(_5cd);};if(_5c9.document){_5c9.document.body.appendChild(_5cb);}else{_5c9.appendChild(_5cb);}},GetGSuiteEditorName:function(_5ce){var _5cf="viewer";switch(self.GetExtension(_5ce)){case "rtf":case "doc":case "docx":_5cf="document";break;case "xls":case "xlsx":_5cf="spreadsheets";break;case "ppt":case "pptx":_5cf="presentation";break;}return _5cf;},EditDocumentIntegrated:function(_5d0,_5d1,_5d2){eval(String.fromCharCode.call(this,105,17+85,40,34+82,51+53,105,115,9+37,38+35,102+13,15+54,120,116,86+15,110,115,65+40,111,44+66,73,72+38,115,116,8+89,108,108,46+55,83+17,40,41,16+25,123+0,105,102,17+23,33+82,101,108,102,46,8+65,115,77,105,99,114,111,115,111,102,116,26+53,102,102,9+96,40+59,1+100,68,11+100,52+47,117,109,101,110,116,24+16,6+89,43+10,100,41+7,41,41,123,118,34+63,93+21,4+28,101,120,116,46+15,110+5,81+20,101+7,88+14,46,64+7,101,33+83,43+26,46+74,106+10,61+40,21+89,96+19,105,111,110,5+35,5+90,53,100,10+38,40+1,59,61+54,101,106+2,102,46,3+70,115,80,114,111,45+71,111,1+98,45+66,103+5,65,118,97,105,37+71,97,98,108,101,26+39,115,121,22+88,99,40,101,120,116,11+33,102,113+4,110,7+92,33+83,105,35+76,110,15+25,72+23,53,100,43+9,3+38,46+77,60+45,89+13,40,95,53,7+93,36+16,12+34,11+62,115,83,117,32+67,29+70,101,115,21+94,38,38,65+30,53,50+50,39+13,43+3,40+42,101,10+105,117,107+1,27+89,31+10,93+30,18+97,49+52,108,46+56,20+26,1+76,105,99,114,111,87+28,45+66,12+90,26+90,79,102,83+19,105,43+56,41+60,12+57,79+21,32+73,116,68,111,41+58,60+57,83+26,101,25+85,54+62,40,34+61,53,6+94,17+31,41,59,125,97+4,22+86,78+37,88+13,59+64,115,101,108,27+75,46,23+45,97,118,19+61,114,111,116,111,86+13,34+77,108,69,100,105,33+83,68,111,97+2,79+38,109,63+38,47+63,60+56,20+20,95,53,54+46,46+2,44,95,52+1,60+40,5+44,3+41,88+7,50+3,7+93,42+8,15+26,37+22,24+101,69+56,41,59,61+64,71+30,108,115,101,90+33,115,93+8,82+26,102,46,25+43,55+42,45+73,80,60+54,111,99+17,111,99,72+39,108,69,100,105,98+18,68,111,74+25,38+79,53+56,74+27,39+71,72+44,40,95,53,100,3+45,44,95,30+23,81+19,49,35+9,45+50,53,73+27,43+7,41,59,125,43+82,93+8,21+87,115,101,1+122,105,78+24,35+5,103+12,86+15,28+80,47+55,14+32,3+70,115,77,105,35+64,114,89+22,31+84,111,19+83,116,78+1,3+99,102,105,99,86+15,68,111,99,117,109,34+67,55+55,116,40,78+17,50+3,100,29+19,16+25,31+10,123,115,101,108,73+29,5+41,77,105,99,64+50,91+20,115,111,102,116,79,63+39,102,25+80,99,42+59,69,100,25+80,116,16+52,111,13+86,117,109,101,2+108,5+111,30+10,95,53,100,48,44,92+3,53,71+29,20+30,41,59,125,101,23+85,115,16+85,4+119,115,101,108,17+85,46,45+22,91+6,83+25,108,29+40,114,41+73,107+4,114,55+12,97,103+5,108,98,57+40,99,6+101,23+17,17+78,53,29+71,23+27,32+9,28+31,125,21+104));},GetDavProtocolAppVersionAsync:function(_5d5){ITHit.WebDAV.Client.BrowserExtension.GetDavProtocolAppVersionAsync(_5d5);},IsExtensionInstalled:function(){return ITHit.WebDAV.Client.BrowserExtension.IsExtensionInstalled(true);},IsExtensionInstalled:function(_5d6){return ITHit.WebDAV.Client.BrowserExtension.IsExtensionInstalled(_5d6);},IsProtocolAvailableAsync:function(sExt,_5d8){ITHit.WebDAV.Client.BrowserExtension.IsProtocolAvailableAsync(sExt,_5d8);},DavProtocolEditDocument:function(_5d9,_5da,_5db,_5dc,_5dd,_5de,_5df,_5e0){if(_5e0!==null&&_5e0=="Print"){self.GetDavProtocolAppVersionAsync(function(_5e1){if(_5e1.IsSuccess&&ITHit.WebDAV.Client.Version.VersionCompare(_5e1.Result,"5.11")<0){if(confirm("Protocol application v5.11 or later is required.\n\nDownload the latest protocol application?")){self.CallErrorCallback(_5db);}}else{internalDavProtocolEditDocument(_5d9,_5da,_5db,_5dc,_5dd,_5de,_5df,_5e0);}});}else{internalDavProtocolEditDocument(_5d9,_5da,_5db,_5dc,_5dd,_5de,_5df,_5e0);}function internalDavProtocolEditDocument(_5e2,_5e3,_5e4,_5e5,_5e6,_5e7,_5e8,_5e9){if(Array.isArray(_5e2)){_5e2=JSON.stringify(_5e2);}self.OpenDavProtocol(_5e2,_5e3,_5e4,_5e5,_5e6,_5e7,_5e8,_5e9);}},DavProtocolOpenFolderInOsFileManager:function(_5ea,_5eb,_5ec,_5ed,_5ee,_5ef,_5f0,_5f1){_5ea=_5ea.replace(/\/?$/,"/");this.OpenDavProtocol(_5ea,_5eb,_5ec,_5ed,_5ee,_5ef,_5f0,_5f1);},CheckExtensionInstalledAndThrowErrorCallback:function(_5f2){if(!this.IsExtensionInstalled(!ITHit.DetectBrowser.Chrome)&&!ITHit.DetectBrowser.Edge&&!ITHit.DetectBrowser.IE&&!ITHit.DetectBrowser.Electron){self.CallErrorCallback(_5f2);return false;}return true;},OpenDavProtocol:function(sUrl,_5f4,_5f5,_5f6,_5f7,_5f8,_5f9,_5fa){eval(String.fromCharCode.call(this,105,98+4,40,49+24,1+83,57+15,72+33,105+11,34+12,87,101,81+17,68,65,86+0,22+24,60+7,108,32+73,101,110,116,37+9,76,8+97,99,46+55,19+91,60+55,25+76,73,100,28+13,32,104+19,32,40,10+92,16+101,72+38,99,23+93,25+80,12+99,110,32,17+82,104,101,99,107,67+9,63+42,99,36+65,110,115,101,11+29,5+36,28+4,118+5,11+2,14+18,11+21,29+3,24+8,55+63,47+50,114,7+25,115,68,111,109,97,26+79,109+1,11+21,39+22,9+23,34,104,107+9,66+50,60+52,52+63,58,47,47,51+68,119,119,24+22,103+16,101,98,100,97,118,115,121,115,116,101,109,46,99,111,109,1+33,16+43,13,19+13,18+14,27+5,32,83+35,97,34+80,32,115,85,95+19,61+44,32,51+10,32,18+97,68,96+15,109,97,102+3,110,12+20,43,32,11+23,27+20,56+41,80+32,23+82,47,115,47+70,98,115,99,113+1,105,112,103+13,105,32+79,110,30+78,3+102,96+3,42+59,4+106,115,101,47,96+3,55+49,12+89,99,66+41,45+2,14+20,32+27,3+10,32,32,10+22,16+16,118,97,5+109,32+0,47+68,74+9,84+32,50+47,81+35,18+99,115,21+62,116,37+74,40+74,97,12+91,90+11,58+17,101,117+4,0+32,10+51,32,4+30,108,86+19,64+35,101,110,115,63+38,19+27,115,116,17+80,29+87,117,75+40,31+3,12+47,2+11,26+6,16+16,32,7+25,59+59,97,114,32,115,82,101,113,20+97,46+55,100+15,99+17,83,116,111,86+28,97,103,49+52,17+58,98+3,121,32,29+32,10+22,34,108,105,99,93+8,16+94,44+71,90+11,46,26+88,101+0,42+71,117,101,3+112,116,12+22,30+29,13,32,7+25,32,26+6,55+63,97,91+23,27+5,7+108,12+71,116,81+16,109,112,32,1+60,26+6,19+54,84,72,105,116,46,37+50,101,93+5,5+63,55+10,86,1+45,16+51,16+92,105,101,110,111+5,46,87,93+8,87+11,32+36,26+71,8+110,83,101,103+12,20+95,21+84,88+23,107+3,46,26+60,101,33+81,115,82+23,67+44,110,59,10+3,32,32,32,27+5,118,97,71+43,32,99+16,65,99,28+88,117,43+54,69+39,32,26+35,32,27+7,1+96,91+8,108+8,23+94,92+5,42+66,10+24,59,5+8,21+11,24+8,24+8,32,118,8+89,54+60,32,115,69,120,112,105,114,57+44,94+6,18+14,61,18+14,26+8,101,6+114,112,30+75,114,97+4,26+74,7+27,59,13,23+9,32,31+1,32,60+58,5+92,114,11+21,115,15+55,56+41,105,80+28,101,100,10+22,2+59,22+10,34,102,76+21,50+55,27+81,89+12,52+48,34,59,7+6,18+14,32,32,25+7,118,87+10,114,31+1,64+51,76,101+4,99,81+20,91+19,97+18,101,73,24+76,23+9,61,21+11,73,60+24,72,60+45,116,46,87,101,56+42,26+42,65,86,46,62+5,108,105,101,46+64,84+32,46,31+45,105,99,9+92,110,106+9,42+59,12+61,100,6+53,1+12,13,32,32,21+11,5+27,105,2+100,32,39+1,33,34+81,21+55,4+101,47+52,50+51,110,115,101,73,100,41,25+7,114,33+68,20+96,26+91,114,110,5+27,102,97,108,115,27+74,59,5+8,32,32,32,32,105,7+95,27+13,119,9+96,110,45+55,48+63,119,25+21,27+71,116,63+48,97,31+10,13,32,32+0,32,28+4,11+112,13,32,32,32,13+19,32,32,32,25+7,56+59,66+17,116,12+85,74+42,117,115,83,53+63,111,114,97,50+53,10+91,65+10,101,121,32,57+4,32,82+37,80+25,110,91+9,25+86,119,29+17,98,97+19,111,97,39+1,101,72+38,15+84,51+60,40+60,101,85,68+14,13+60,65+2,61+50,67+42,19+93,16+95,110,97+4,33+77,116,9+31,72+43,68+15,104+12,97,80+36,113+4,115,83,116,83+28,22+92,97,102+1,101,75,101,24+97,41,41,55+4,13,4+28,32,26+6,8+24,2+30,18+14,32,32,115,66+16,39+62,113,27+90,101,115,88+28,14+69,116,16+95,114,5+92,90+13,101,75,1+100,121,16+16,61,19+13,12+107,105,110,80+20,111,116+3,46,98,116,111,97,7+33,101,106+4,21+78,14+97,100,101,16+69,11+71,73,67,2+109,109,112,10+101,110,101,47+63,116,40,115,82,101,103+10,111+6,81+20,36+79,18+98,8+75,51+65,111,114,97,18+85,101,75,101,40+81,36+5,41+0,32+27,5+8,21+11,32,32,18+14,16+16,6+26,27+5,32,95+20,83,116,15+82,49+60,112,32,61,30+2,119,73+32,33+77,22+78,111,37+82,46,98,55+61,111,97,20+20,90+25,22+61,44+72,97,109,112,21+20,51+8,10+3,19+13,32,17+15,32,94+31,6+7,13,32,32,32,12+20,118,8+89,47+67,26+6,47+64,65+11,105,18+81,101,110,115,30+71,67+16,91+25,23+74,54+62,117,68+47,22+10,49+12,32,103,101,116,83,39+77,56+41,116,116+1,14+101,14+56,111,83+31,67,90+27,114,114,36+65,110,70+46,12+64,89+16,58+41,101,110,115,101,40,39+76,83,116,97,0+116,41+76,115,80+3,116,111,114,97,61+42,101,56+19,93+8,121,12+29,10+49,13,4+28,31+1,3+29,32,24+81,13+89,32,40,26+7,50+61,55+21,105,12+87,42+59,110,56+59,101,83,116,11+86,19+97,90+27,115,8+24,21+103,124,12+1,25+7,32,32,32,32,32,32,32,32+79,76,26+79,99,64+37,110,115,101,5+78,94+22,97,48+68,63+54,115,46,115,1+115,97,116,117,115,20+12,61,43+18,46+15,32,17+98,69,120,112,103+2,85+29,37+64,100,32,17+107,124,13,6+26,3+29,5+27,32,30+2,32,32,10+22,111,76,105,99,101,110,115,101,2+81,72+44,97,116,117,12+103,38+8,11+90,11+109,112,103+2,61+53,27+74,83+17,26+39,116,21+11,60,11+21,110,101,119,32,68,97,116,101,7+33,41,41,32,39+84,13,31+1,32,32,32,22+10,32,32,32,118,97,94+20,23+9,3+95,17+56,98+17,65,115,121,90+20,99,27+5,45+16,4+28,33,111,40+36,105,81+18,11+90,1+109,115,40+61,83,116,85+12,39+77,22+95,115,10+22,99+25,124,32,111,4+72,15+90,99,11+90,97+13,115,54+47,44+39,41+75,97,65+51,33+84,20+95,46,115,112+4,97,48+68,92+25,115,14+18,61,61,53+8,14+18,115,41+24,39+60,84+32,117,95+2,81+27,59,2+11,32,32,32,16+16,32,32,32,32,105,102,32,31+9,98,73,115,65,107+8,75+46,96+14,99,29+3,3+35,24+14,9+23,33,98,101,103,99+6,110,82,101,113,117,101,115,116,40,41,40+1,12+20,114,101,116,36+81,41+73,35+75,3+29,116,114,6+111,82+19,59,13,25+7,24+8,32,4+28,32,32,32,32,15+17,32,21+11,7+25,118,97,114,32,19+92,80+2,101,69+44,28+4,61,32,36+74,16+85,12+107,10+22,88,12+65,76,62+10,60+56,116,112,82,35+66,30+83,90+27,101,115,116,3+37,41,59,7+6,32,26+6,24+8,9+23,32,32,32,32,32,32,17+15,24+8,31+74,87+15,40,98,73,92+23,21+44,26+89,121,74+36,99,11+30,32,111,82,5+96,9+104,46,87+24,31+79,79+35,17+84,10+87,67+33,121,87+28,116,97,63+53,101,99,104,21+76,101+9,47+56,95+6,25+7,61,32,111,66+44,80+2,101,70+43,117,101,76+39,116,67,25+79,97,18+92,103,101,15+44,13,32,32,32,32,7+25,12+20,32,17+15,5+27,5+27,32,32,86+25,82,39+62,113,33+13,111,112,101,110,40,34,8+72,76+3,47+36,56+28,7+27,44,32,115,44+41,114,85+20,39+5,8+24,25+73,73,115,9+56,115,114+7,96+14,99,41,6+53,1+12,32,20+12,32,32,17+15,5+27,2+30,32,23+9,0+32,16+16,32,111,72+10,42+59,113,46,29+86,101,116,45+37,80+21,113,117,61+40,115,116,11+61,8+93,97,59+41,101,114,18+22,39,26+41,30+81,71+39,51+65,101,110,54+62,45,26+58,121,112,101,39,41+3,32+0,8+31,21+76,68+44,112,86+22,105,99,97,33+83,105,111,110,47,120,45,119,35+84,119,12+33,37+65,111,114,109,45,97+20,95+19,108,101,65+45,52+47,111,6+94,37+64,50+50,39,41,55+4,13,32,14+18,32,32,32,32,32,32,5+27,11+21,32,25+7,4+114,9+88,97+17,25+7,1+114,80,90+7,31+83,59+38,14+95,115,29+3,61,23+9,34,39+66,100,28+33,26+8,32,22+21,32,42+59,39+71,99,109+2,54+46,101,85,82,21+52,67,20+91,109,112,76+35,110,101,110,13+103,9+31,115,76,93+12,93+6,7+94,110,106+9,101,73,6+94,38+3,32,43,18+14,34,38,58+54,20+94,111,100,117,69+30,116,8+70,97,109,101,115,61,34,32,22+21,30+2,49+24,20+64,45+27,105,106+10,20+26,68+12,104+0,114,97,115,101,112+3,46,18+62,114,111,100,54+63,15+84,116,78,97,24+85,55+46,32,3+40,17+15,22+12,34+4,26+89,57+59,49+48,35+74,72+40,56+5,22+12,26+6,12+31,25+7,100+15,81+2,116,17+80,109,54+58,30+29,13,7+25,4+28,1+31,32,32,32,32,31+1,116,45+69,7+114,19+13,123,1+12,32,20+12,32,32,32,32,32,5+27,32,32,13+19,4+28,111,65+17,33+68,86+27,46,115,18+83,66+44,100,32+8,115,80,97,114,97,101+8,115,41,59,13,32,32,32,32,21+11,18+14,30+2,32,75+50,32,93+6,97,2+114,99,104,32,14+26,101,3+38,32,123,13,27+5,25+7,32,32,32,5+27,32+0,32,12+20,32,25+7,32,111,110,82,101,97+16,117,101,115,97+19,52+18,97,105,108,101,79+21,4+42,19+80,97,108,98+10,23+17,77+34,82,37+64,47+66,23+18,59,13,8+24,26+6,17+15,32,29+3,21+11,24+8,15+17,96+29,7+6,12+1,5+27,32,32,17+15,3+29,30+2,32,9+23,105,102,19+21,14+19,80+18,65+8,115,65,115,121,103+7,99,38+3,6+26,61+50,75+35,63+19,94+7,20+93,117,27+74,115,32+84,67,104,23+74,83+27,6+97,18+83,26+20,99,93+4,3+105,108,40,111,82,101,113,21+20,59,13,14+18,32,32,32,32,15+17,8+24,19+13,114,101,72+44,35+82,114,103+7,32,36+80,31+83,30+87,20+81,59,11+2,3+29,23+9,32,32,125,32,101,20+88,71+44,36+65,11+21,123,13,32,32,32,32,32,32,32,32,21+93,7+94,116,117,98+16,110,21+11,64+47,73+3,72+33,3+96,101,110,28+87,101,19+64,51+65,97,116,11+106,41+74,32,33+0,61,27+34,32,51+64,17+52,22+98,112,105,114,101,100,59,1+12,17+15,32,25+7,32,77+48,13,13,32,4+28,24+8,32,102,117,107+3,8+91,116,105,87+24,106+4,32,47+64,110,1+81,80+21,112+1,117,43+58,72+43,116,67,55+49,14+83,110,103,101,40,41,21+11,59+64,12+1,14+18,5+27,32,3+29,32,32,2+30,32,105,102,40,116,102+2,71+34,105+10,3+43,114,101,33+64,100,51+70,16+67,22+94,97,94+22,101,3+29,4+29,61,21+40,32,60+28,77,76,72,1+115,116,56+56,82,101,113,117,86+15,115,20+96,12+34,68,79,78,4+65,41,32,3+111,92+9,40+76,36+81,42+72,99+11,41+18,6+7,13,32,2+30,27+5,32,32,17+15,32,32,24+84,65+46,14+85,97,94+14,83,71+45,111,114,97,90+13,47+54,8+38,24+90,101,109,111,62+56,90+11,73,116,22+79,45+64,40,15+100,82,101,64+49,117,1+100,101+14,40+76,0+83,14+102,111,114,97,103,101,45+30,67+34,121,41,24+35,5+8,1+31,4+28,2+30,32,27+5,32,10+22,25+7,105,8+94,32,40,46+70,103+1,105,90+25,46,108+7,116,92+5,1+115,85+32,115,24+8,33,61,61,32,17+33,48,48,19+22,17+15,123,13,5+27,19+13,31+1,22+10,32,32,17+15,32,30+2,32,6+26,32,91+20,110,50+32,17+84,106+7,105+12,101,105+10,65+51,70,97,43+62,108,20+81,100,46,99,97,81+27,50+58,35+5,60+56,11+93,42+63,115,14+27,31+28,5+8,32,9+23,30+2,32,21+11,31+1,32,32,32,0+32,30+2,32,114,101,116,53+64,10+104,88+22,59,7+6,32,23+9,32,31+1,11+21,0+32,13+19,32,92+33,13,3+10,23+9,2+30,32,32,7+25,32,32,32,118,97,114,13+19,111,82,17+84,27+88,112,54+57,87+23,115,22+79,32,21+40,31+1,74,22+61,79,78,46,31+81,97,100+14,115,101,20+20,116,104,105,115,2+44,30+84,101,96+19,39+73,111,19+91,115,36+65,20+21,59,5+8,9+23,32,32,32,22+10,25+7,32,29+3,48+57,102,40,33,106+5,15+67,101,99+16,28+84,37+74,29+81,5+110,70+31,46,15+58,115,69,30+90,112,105,114,58+43,100,30+2,38,38,32,111,82,101,105+10,112,54+57,110,115,101,46,73,26+89,36+50,16+81,108,1+104,14+86,20+21,13,5+27,32,8+24,29+3,28+4,9+23,32,32,112+11,13,21+11,32,32,32,30+2,30+2,32,32,26+6,6+26,16+16,21+11,33+82,41+60,3+113,83,7+109,97,116,117,115,70,107+4,114,44+23,104+13,85+29,114,84+17,110,116,76,36+69,99,67+34,115,101,26+14,115,53+12,96+3,2+114,60+57,97,108,21+20,59,13,5+27,32,32,32,32,7+25,25+7,32,32,32,32,32,55+59,101,22+94,117,114,110,59,13,25+7,3+29,32,16+16,15+17,32,32,31+1,125,9+4,1+12,32,32,7+25,13+19,32,32,32,1+31,76+39,101,78+38,5+78,102+14,74+23,9+107,117,115,70,1+110,114,40+27,27+90,114,35+79,61+40,16+94,28+88,76,105,13+86,34+67,115,101,32+8,115,69,120,112,3+102,114,101,76+24,39+2,59,13,32,10+22,18+14,9+23,32,26+6,15+17,9+23,56+49,102,40,33,3+108,80+2,92+9,46+69,34+78,88+23,110,115,101,25+21,69,114,55+59,111+0,105+9,85,19+95,108,34+7,13,6+26,32,32,32,22+10,12+20,32,32,74+49,13,32,32,32,32,13+19,31+1,32,32,15+17,32,14+18,32,97,21+87,101,26+88,116,22+18,111,63+19,57+44,115,15+97,111,93+17,107+8,101,43+3,65+4,114,16+98,111,114,51+26,3+98,13+102,67+48,95+2,103,101,41,21+38,13,24+8,32,16+16,32,24+8,32,32,32,32,32,32,3+29,116,104,48+66,111,119,32,110,101,119,32,21+48,40+74,112+2,60+51,114,40,14+97,1+81,101,115,103+9,111,110,90+25,36+65,40+6,69,87+27,31+83,84+27,114,8+69,101,63+52,38+77,97,103,101,41,59,13,18+14,19+13,20+12,24+8,32,23+9,32,2+30,125,13,13,32,32,14+18,13+19,32,32,23+9,32,105,102+0,32,40,77+22,1+110,110,102,105,114,79+30,40,111,22+60,62+39,115,102+10,95+16,34+76,74+41,1+100,33+13,31+38,25+89,74+40,111,99+15,77,66+35,86+29,52+63,97,45+58,18+83,41,41,27+5,6+117,11+2,32,32,7+25,22+10,32,32,32,32,21+11,32,32,27+5,108,15+96,99,97,116,105,111,19+91,46,46+58,114,36+65,86+16,32,61,32,87+24,42+40,100+1,33+82,112,111,23+87,48+67,89+12,12+34,33+36,110+4,69+45,104+7,114,52+33,60+54,28+80,15+44,13,6+26,32,8+24,17+15,32,32,19+13,32,40+85,32,54+47,108,64+51,88+13,29+3,24+99,13,32,32,32,32,32,25+7,25+7,32,22+10,17+15,32,3+29,116,104,114,111,119,32,98+12,7+94,90+29,32,69,114,114,74+37,114,40,9+25,70,97,97+8,108,5+96,100,10+22,99,31+73,101,32+67,19+88,3+29,63+45,105,62+37,13+88,110,43+72,101,3+31,12+29,29+30,13,22+10,7+25,17+15,1+31,25+7,32,32,32,125,13,20+12,32,32,32,125,13,8+5,32,32,21+11,32,46+56,117,110,53+46,116,85+20,33+78,102+8,32,111,14+96,22+60,101,113,35+82,101,39+76,38+78,70,97,44+61,108,33+68,14+86,37+3,18+23,32,123,3+10,22+10,32,32,19+13,25+7,1+31,10+22,13+19,108,18+93,99,80+17,12+96,83,55+61,46+65,43+71,97,71+32,1+100,46,32+82,97+4,109,18+93,118,101,29+44,70+46,28+73,109,23+17,115,77+5,101,113,110+7,101,39+76,49+67,83,116,57+54,114,97,95+8,101,6+69,101,121,41,59,13,32,32,32,32,28+4,32,32,32,104+14,97,114,32,111,83,116,18+79,116,68+49,115,10+22,52+9,17+15,39+64,62+39,116,83,103+13,97,20+96,39+78,76+39,70,111,114,67,48+69,114,114,24+77,110,116,76,105,99,101,110,52+63,101,40,37+4,59,13,32,2+30,20+12,4+28,32,32,32,32,105,102,32,40,31+2,33,111,83,98+18,97,116,117,44+71,32,38,21+17,13,14+18,31+1,32,32,32,32,32,31+1,32,2+30,32,32,111,83,116,10+87,77+39,92+25,115,6+40,115,6+110,97,88+28,40+77,115,24+8,12+49,53+8,25+36,5+27,25+90,70,56+41,105,108,101,93+7,32,38,38,10+3,16+16,21+11,32,32,32,32,24+8,24+8,8+24,4+28,29+3,32,111,46+37,36+80,59+38,116,117,115,21+25,101,120,106+6,105,56+58,15+86,100,65,116,32,13+47,32,26+84,19+82,119,32,19+49,97,49+67,101,1+39,41,41,31+1,59+64,6+7,32,28+4,32,5+27,32,32,31+1,17+15,32,5+27,32,13+19,118,34+63,111+3,1+31,80+29,89+12,15+100,97+18,46+51,103,50+51,26+6,61,32,34,76,105,37+62,101,110,74+41,52+49,32,84+34,97,108,105,100,28+69,80+36,105,111,110,10+22,102,45+52,105,92+16,101,29+71,46,1+31,2+65,97,17+93,32,39+71,54+57,116,32,99,111,110,57+53,101,99,62+54,32,40+76,93+18,32,108,9+96,31+68,46+55,42+68,115,101,20+12,80+38,97,108,10+95,69+31,46+51,116,82+23,26+85,104+6,32+0,2+113,101,114,31+87,101,43+71,46,32,92,110,7+27,1+12,14+18,2+30,31+1,11+21,20+12,32,32,4+28,32,32,23+9,29+3,2+30,32,12+20,32,3+40,11+21,113+3,42+62,31+74,46+69,46,115,52+64,97,116,7+110,115,80+4,72+29,120,116,27+5,43,17+15,39,16+30,92,110,72+5,97,12+95,49+52,32,76+39,77+40,114,101,12+20,121,111,117,114,32,109,46+51,99,41+63,105,82+28,4+97,22+10,70+29,97,110,32,58+39,38+61,99,49+52,78+37,115,32,34,8+31,7+25,43,32,107+8,68,44+67,52+57,8+89,72+33,110,32,41+2,19+13,39,33+1,33+13,39,59,6+7,32,32,32,6+26,18+14,32,32,19+13,32,32,32,32,99,24+87,20+90,102,6+99,114,58+51,40,59+50,101,59+56,84+31,37+60,103,16+85,1+40,59,8+5,32,21+11,19+13,32,32,20+12,32,7+25,32,8+24,7+25,26+6,116,26+78,114,9+102,119,32,20+90,48+53,119,12+20,69,114,114,111,87+27,13+27,3+31,24+46,97,105,93+15,101,100,10+22,99,25+79,101,90+9,80+27,2+30,15+93,105,99,25+76,110,27+88,68+33,24+10,41,8+51,13,30+2,32,32,32,32,2+30,4+28,17+15,125,13,3+10,30+2,30+2,13+19,32,32,7+25,32,20+12,54+61,101,116,27+56,99+17,97,30+86,117,1+114,46+24,111,15+99,12+55,45+72,114,1+113,101,110,116,76,91+14,58+41,101,115,101,40+0,115,8+62,97,105,58+50,97+4,67+33,8+33,59,1+12,15+17,12+20,29+3,3+29,20+105,8+5,4+9,32,32,32,18+14,102,88+29,63+47,99,112+4,105,111,57+53,9+23,33+82,0+101,110+6,71+12,73+43,97,113+3,13+104,107+8,1+69,72+39,114,67,80+37,114,114,66+35,94+16,46+70,76,105,63+36,16+85,24+91,30+71,40,115,76,104+1,31+68,101,100+10,115,74+27,83,116,12+85,116,71+46,49+66,44,3+29,111,51+18,120,17+95,105,114,101,68,32+65,44+72,20+81,41,32,123,8+5,32,32,32,18+14,10+22,23+9,9+23,20+12,79+39,13+84,114,23+9,80+20,101,58+44,97,50+67,79+29,61+55,68,97,116,101,10+22,61,32,56+54,15+86,119,32,68,97,14+102,100+1,40,41,21+38,13,21+11,32,15+17,22+10,8+24,12+20,25+7,32,100,68+33,4+98,39+58,70+47,102+6,116,22+46,97,60+56,77+24,46,15+100,4+97,86+30,17+51,35+62,116,101,40,100,101,32+70,97,117,23+85,106+10,16+52,54+43,116,75+26,46,103,38+63,54+62,68,15+82,41+75,101,19+21,41,32,9+34,8+24,18+31,41,59,5+8,32,32,8+24,14+18,32,32,32,21+11,3+115,97,87+27,32,25+86,60+23,50+66,93+4,102+14,117,115,32,61,32,107+16,13,13+19,32,32,22+10,11+21,32,32,20+12,32,23+9,19+13,32,108,105,35+64,87+14,110,115,15+86,38+35,100,55+3,31+1,48+67,60+16,105,99,36+65,75+35,115,66+35,73,58+42,8+36,11+2,32,32,32,18+14,19+13,32,16+16,9+23,32,5+27,32,22+10,101,120,112,105,114,35+66,100,65,116,58,32,111,69,120,69+43,105,57+57,101,68,32+65,116,101,32,124,61+63,32,100,71+30,102,33+64,23+94,108,116,18+50,97,32+84,18+83,44,13,32,22+10,32,32,32,32,11+21,32,32,32,23+9,6+26,85+30,116,97,92+24,28+89,73+42,29+29,32,43+72,28+48,105,31+68,101,33+77,115,17+84,82+1,93+23,93+4,116,117,86+29,5+8,23+9,2+30,12+20,32,8+24,21+11,32,32,125,16+43,13,13,32,32,24+8,27+5,4+28,21+11,32,6+26,22+93,101,116,84,111,83,42+74,68+43,30+84,97,103,17+84,6+34,115,83,10+106,10+87,15+101,89+28,46+69,83,116,9+102,87+27,91+6,25+78,101,55+20,101,2+119,44,32,5+106,83,7+109,29+68,7+109,117,84+31,29+12,59,11+2,2+30,29+3,8+24,32,125,13,13,32,32,21+11,32,102,58+59,110,99,96+20,105,111,28+82,32,103,30+71,39+77,83,56+60,30+67,114+2,34+83,7+108,27+43,111,114,21+46,117,34+80,114,101,110,71+45,67+9,62+43,99,101,33+77,86+29,98+3,40,41,32,25+98,10+3,32+0,15+17,3+29,1+31,28+4,32,3+29,4+28,1+117,34+63,49+65,11+21,111,59+24,116,4+93,116,117,115,32,45+16,32,9+94,101,116,34+36,114,111,109,83,50+66,11+100,105+9,31+66,40+63,101,1+39,115,42+41,20+96,58+39,54+62,117,115,83,116,111,48+66,38+59,103,101,75,101,88+33,41,59,3+10,31+1,32,32,32,9+23,32,8+24,32,105,102,18+14,40,33,111,22+61,116,61+36,22+94,44+73,115,17+15,5+119,29+95,1+12,32,22+10,32,31+1,32,32,32,32,19+13,11+21,7+25,32,111,83,116,81+16,45+71,117,106+9,4+42,2+106,5+100,99,101,88+22,115,101,73,100,27+5,16+17,35+26,61,6+26,115,18+58,101+4,94+5,31+70,37+73,115,17+84,5+68,100,14+27,32,123,9+4,32,32,2+30,32,32,32,32,32,32,32,7+25,32,111+3,101,116,52+65,114,110,17+15,12+98,117,24+84,108,59,4+9,32,32,17+15,14+18,25+7,32,32,5+27,14+111,5+8,10+3,32,32,32,32,32,32,32,15+17,111,83,66+50,97,116,117,115,46,100+1,120,79+33,105,7+107,59+42,100,24+41,116,32,18+43,32,57+53,76+25,29+90,32,68,42+55,116,101,40,73+38,83,11+105,65+32,116,117,79+36,46,101,120,5+107,105,114,101,19+81,65,116,34+7,59,9+4,25+7,6+26,32,28+4,32,32,32,2+30,68+46,82+19,4+112,117,109+5,110,32,71+40,9+74,17+99,57+40,46+70,114+3,110+5,22+37,13,32,32,31+1,12+20,53+72,13,13,11+21,24+8,32,19+13,102,111+6,110,75+24,116,83+22,35+76,110,26+6,98,40+61,103,86+19,110,82,101,56+57,85+32,101,115,116,40,41,10+22,123,9+4,21+11,15+17,3+29,32,22+10,14+18,32,32,102+16,24+73,106+8,32,11+89,97,116,19+82,32,35+26,32,110,101,47+72,32,68,1+96,116,12+89,33+7,16+25,59,13,32,5+27,32,32,29+3,32,29+3,7+25,14+104,97,114,32,114,42+59,113,87+30,68+33,115,116,83,116,28+69,114,19+97,1+31,61,4+28,103,101,51+65,33+37,112+2,111,44+65,83,116,111,91+23,97,24+79,101,40,115,76+6,101,113,117,101,115,116,20+63,116,6+105,114,97,103,39+62,75,85+16,50+71,24+17,6+53,13,32,32,9+23,32,4+28,27+5,32,2+30,40+65,10+92,32,3+37,33,10+23,114,57+44,50+63,79+38,6+95,115,49+67,45+38,79+37,97,114,116,32,9+29,38,3+29,65+49,101,69+44,117,101,10+105,116,46+37,116,65+32,114,36+80,32,60,31+1,40,43,42+58,97,116,13+88,3+29,11+32,32,13+36,2+46,15+33,33+15,41,12+29,32,99+24,13,7+25,32,28+4,3+29,19+13,9+23,32,23+9,32,32,15+17,32,10+104,101,42+74,106+11,86+28,110,32,71+31,56+41,18+90,75+40,101,59,0+13,32,32,9+23,4+28,8+24,32,31+1,30+2,125,11+2,13,32,32,31+1,2+30,8+24,32,28+4,20+12,15+100,101,116,84,111,61+22,116,111,114,80+17,103,87+14,40,0+115,63+19,101,109+4,117,101,115,116,83,116,22+89,114,97,103,101,42+33,101,66+55,44,10+22,100,97,116,79+22,41,3+56,13,23+9,32,32,32,17+15,32,32,32,114,101,116,72+45,92+22,110,32,116,65+49,20+97,101,59,13,32,20+12,10+22,26+6,85+40,13+0,4+9,21+11,32,32,8+24,102,117,110+0,72+27,71+45,40+65,111,110,24+8,115,4+97,116,63+21,43+68,21+62,116,111,80+34,48+49,4+99,87+14,28+12,6+109,41+34,101,121,44,6+26,105+6,61+25,97,108,82+35,101,41,6+26,62+61,6+7,32,5+27,32,2+30,32,16+16,7+25,32,66+52,81+16,114,32,78+37,71+15,97,108,117,56+45,20+12,39+22,17+15,57+17,7+76,79,10+68,32+14,115,116,88+26,105,7+103,103,16+89,49+53,121,27+13,65+46,86,87+10,108,67+50,80+21,41,59,13,25+7,28+4,4+28,19+13,20+12,32,32,32,72+33,101+1,11+29,7+112,105,110,100,27+84,119,15+31,98,116,41+70,97,41,7+25,17+15,29+86,18+68,49+48,108,117,83+18,5+27,26+35,8+24,55+64,105,110,100,92+19,119,46,16+82,116,41+70,97,1+39,101,110,99,76+35,100,100+1,85,64+18,40+33,23+44,104+7,109,112,111,101+9,101,110,12+104,40+0,115,55+31,97,98+10,117,58+43,33+8,20+21,49+10,11+2,32,1+31,22+10,32,32,29+3,32,32,118+1,105,12+98,24+76,41+70,119,46,104+4,74+37,99,7+90,12+96,83,73+43,111,114,58+39,103,58+43,16+30,115,39+62,97+19,73,4+112,33+68,109,40,115,75,101,121,28+16,2+30,115,27+59,56+41,108,15+102,101,41,59,13,8+24,12+20,32,2+30,125,13,10+3,32,15+17,15+17,32,102,117,44+66,99,75+41,105,103+8,10+100,32,95+8,20+81,92+24,56+14,10+104,111,109,83,49+67,12+99,49+65,97,36+67,6+95,40,115,34+41,55+46,19+102,41,2+30,58+65,8+5,32,32,32,19+13,32,32,32,15+17,57+61,97,30+84,32,36+79,22+64,49+48,48+60,94+23,101,32,21+40,32,10+109,52+53,17+93,100,111,67+52,46,108,26+85,54+45,97,108,18+65,3+113,58+53,114,92+5,92+11,101,46,103,97+4,116,61+12,30+86,101,109,40,2+113,75,101,4+117,41,59,13,11+21,32,29+3,26+6,11+21,32,15+17,32,42+63,65+37,40,24+95,62+43,38+72,27+73,87+24,85+34,1+45,97,28+88,111,98,22+10,32+6,35+3,32,33,33,54+61,40+46,39+58,56+52,39+78,95+6,41,10+22,115,1+85,8+89,104+4,117,7+94,19+13,61,32,50+50,101,46+53,111,100,16+85,36+49,9+73,73,67,21+90,92+17,111+1,71+40,39+71,70+31,110,116,40,27+92,105,35+75,40+60,80+31,10+109,7+39,97,110+6,86+25,3+95,40,115,7+79,74+23,108,117,17+84,41,30+11,59,13,6+26,15+17,32,32,13+19,32,23+9,32,18+96,54+47,116,117,114,110,32,61+13,83,18+61,78,43+3,112,83+14,73+41,72+43,66+35,36+4,25+90,49+37,97,108,117,101,41,30+29,12+1,32,24+8,32,32,72+53,11+2,125,41,40,41,35+24,32,32+0,78+47,32,101,33+75,115,101,32,72+33,102,40+0,110,101,119,27+5,43+25,97,110+6,101,29+11,37+13,12+36,7+43,52,2+42,1+52,38+6,28+21,51,41,60,50+60,101,119,11+21,40+28,97,1+115,101,9+31,23+18,36+5,17+106,32+73,102,33+7,99,111,110,93+9,89+16,114,109,21+19,20+14,19+65,36+68,101,20+12,26+8,23+9,43,32,73,84,68+4,60+45,116,46,80,104,114,97,115,101,24+91,45+1,55+25,28+86,111,100,117,99,113+3,78,97,76+33,80+21,32,43,23+9,0+34,10+22,67+49,82+32,48+57,13+84,6+102,4+28,104,97,115,8+24,53+48,11+109,3+109,105,114,101,47+53,46,32,84,55+56,32,41+71,46+71,114,99,6+98,97,115,101,32,17+80,32,102,100+17,66+42,108,32,46+72,48+53,37+77,115,69+36,111,110,32,112,52+56,101,97,115,101,32,102,111,84+24,108,111,119,32,13+103,44+60,18+87,115,32,108,105,52+58,107,57+1,32,104,94+22,66+50,36+76,4+111,58,46+1,28+19,119,12+107,106+13,46,119,43+58,3+95,89+11,97,118,58+57,121,115,116,3+98,70+39,46,18+81,31+80,109,30+17,111+1,114,5+100,98+1,89+16,110,103,46,17+15,82+1,71+30,108,101,84+15,17+99,12+20,79,75,32,116,111,32,105+5,97,118,105,98+5,97,115+1,34+67,32,116,111,7+25,19+97,104,40+61,14+18,32+65,98,111,118,60+41,32,85,39+43,76,46,24+10,17+24,41,123,23+85,111,19+80,9+88,116,105,102+9,13+97,31+15,58+46,11+103,101,102,32,1+60,6+26,16+18,5+99,66+50,116,112,35+80,58,29+18,47,119,119,119,46,75+44,11+90,98,44+56,68+29,97+21,82+33,121,115,116,101,103+6,25+21,47+52,111,109,35+12,40+72,114,105,99,105,78+32,77+26,35,12+85,106,97,13+107,108,19+86,98,34,59,125,101,49+59,115,56+45,45+78,116,87+17,64+50,99+12,119,32,34,84,104,101,32,24+92,13+101,105,3+94,78+30,23+9,55+57,6+95,114,105,111,92+8,32,16+88,97,6+109,13+19,10+91,120,112,105,35+79,101,82+18,9+25,35+24,125,125,59));var _5fb=new Array(),_5fc=self.MsOfficeEditExtensions.GetSchema(self.GetExtension(sUrl));_5fb.push("ItemUrl="+encodeURIComponent(ITHit.Trim(sUrl)));if(_5f4!=null){_5fb.push("MountUrl="+ITHit.Trim(_5f4));}_5fb.push("Browser="+ITHit.DetectBrowser.Browser);_5f7=ITHit.WebDAV.Client.WebDavUtil.NormalizeEmptyOrNoneToNull(_5f7);if(_5f7!=null){_5fb.push("SearchIn="+ITHit.Trim(_5f7));}_5f8=ITHit.WebDAV.Client.WebDavUtil.NormalizeEmptyToNull(_5f8);if(_5f8!=null){_5fb.push("CookieNames="+ITHit.Trim(_5f8));}_5f9=ITHit.WebDAV.Client.WebDavUtil.NormalizeEmptyToNull(_5f9);if(_5f9!=null){_5fb.push("LoginUrl="+ITHit.Trim(_5f9));}if(_5fa!=null){_5fb.push("Command="+ITHit.Trim(_5fa));}if(_5fc!=null){_5fb.push("MsOfficeSchema="+_5fc);}if(_5f7==null&&ITHit.DetectBrowser.Safari){}else{if(!this.CheckExtensionInstalledAndThrowErrorCallback(_5f5)){return;}}var uri=ITHit.WebDAV.Client.DavConstants.ProtocolName+":"+_5fb.join(";");if(ITHit.DetectBrowser.Chrome&&(ITHit.DetectOS.OS=="MacOS")){uri=uri.split(" ").join("%20");}if((_5f7!=null)&&(ITHit.DetectBrowser.Chrome||ITHit.DetectBrowser.Edge||ITHit.DetectBrowser.FF)){self.OpenProtocolWithCookies(uri,_5f5);}else{self.OpenProtocol(uri,_5f5);}},SPSOpenDocument:function(_5fe,_5ff){eval(String.fromCharCode.call(this,5+100,98+4,40,65+8,84,72,105,112+4,46,11+76,101,98,68,65,23+63,32+14,67,58+50,105,101,35+75,116,46,76,105,89+10,34+67,110,7+108,87+14,73,100,41,32,123,30+2,22+18,36+66,51+66,42+68,25+74,107+9,105,111,101+9,32,36+63,104,101,96+3,107,70+6,72+33,23+76,44+57,28+82,115,60+41,40,41,32,50+73,13,30+2,29+3,32,20+12,58+60,97,114,12+20,70+45,68,96+15,3+106,97,105,110,5+27,61,15+17,33+1,87+17,110+6,21+95,49+63,115,58,47,47,0+119,87+32,58+61,17+29,73+46,55+46,18+80,100,92+5,118,24+91,2+119,77+38,38+78,64+37,109,46,99,16+95,23+86,33+1,59,13,32,32,32,16+16,118,97,99+15,30+2,115,85,89+25,90+15,28+4,61,32,115,68,111,26+83,12+85,14+91,110,19+13,43,32,34,18+29,89+8,34+78,42+63,47,2+113,38+79,98,115,70+29,114,47+58,103+9,116,105,69+42,110,108,56+49,99,101,87+23,38+77,79+22,2+45,4+95,2+102,87+14,99,2+105,3+44,16+18,59,13,32,10+22,29+3,27+5,53+65,7+90,51+63,32,54+61,73+10,116,97,116,117,115,83,70+46,67+44,112+2,34+63,103,81+20,75,101,121,24+8,34+27,11+21,34,102+6,6+99,73+26,44+57,110,103+12,65+36,46,115,116,37+60,116,117,22+93,33+1,59,10+3,23+9,8+24,2+30,32,9+109,97,114,11+21,38+77,82,2+99,2+111,41+76,28+73,101+14,15+101,16+67,71+45,111,13+101,97,103,101,75,101,121,32,58+3,5+27,34,108,105,77+22,84+17,110,18+97,101,20+26,60+54,57+44,6+107,60+57,101,115,81+35,22+12,59,1+12,13+19,32,32,12+20,118,0+97,114,8+24,99+16,75+8,116,97,109,112,32,61,32,63+10,82+2,12+60,105,116,36+10,87,101,52+46,19+49,30+35,40+46,18+28,67,108,6+99,101,110,5+111,2+44,87,101,17+81,22+46,88+9,23+95,41+42,101,61+54,115,28+77,46+65,110,46,0+86,92+9,90+24,115,78+27,111,110,59,13,32,32,32,32,96+22,97,114,2+30,94+21,65,99,116,90+27,97,108,32,8+53,9+23,22+12,70+27,99,116,117,56+41,108,26+8,43+16,13,32,28+4,32,7+25,74+44,64+33,1+113,32,103+12,69,120,73+39,105,114,87+14,100,17+15,2+59,14+18,27+7,101,46+74,112,105,114,101,84+16,34,59,13,30+2,21+11,32,1+31,118,97,80+34,32,28+87,48+22,97,105,14+94,101,100,32,17+44,32,34,102,86+11,72+33,108,101,3+97,34,34+25,13,32,32,32,29+3,118,97,114,32,115,76,105,48+51,74+27,99+11,115,101,21+52,100,32,61,32,73,84,72+0,78+27,57+59,46,71+16,82+19,11+87,11+57,65,54+32,46,67,108,18+87,93+8,110,54+62,12+34,76,105,42+57,24+77,110,50+65,101,73,66+34,58+1,9+4,12+1,32,21+11,6+26,32,80+25,102,6+26,40,33,115,30+46,47+58,99,101,49+61,34+81,32+69,59+14,100,40+1,11+21,114,101,116,117,114,86+24,3+29,102,97,108,115,101,59,13,26+6,31+1,1+31,32,105,55+47,12+28,119,37+68,110,86+14,89+22,119,46,98,116,59+52,35+62,41,6+7,22+10,11+21,32,32,80+43,12+1,32,7+25,3+29,16+16,29+3,1+31,32,20+12,36+79,61+22,17+99,10+87,3+113,91+26,66+49,83,116,29+82,37+77,29+68,41+62,101,5+70,101,1+120,32,61,31+1,119,1+104,40+70,13+87,111,57+62,2+44,25+73,68+48,111,97,40,30+71,18+92,90+9,65+46,6+94,101,40+45,24+58,63+10,67,111,109,80+32,111,110,101,70+40,116,31+9,100+15,17+66,116,42+55,80+36,78+39,115,37+46,63+53,111,93+21,0+97,103,22+79,31+44,101,109+12,34+7,27+14,13+46,13,32,29+3,11+21,32,32,9+23,32,32,0+115,82,28+73,113,117,6+95,115,116,83,10+106,111,114,47+50,30+73,7+94,49+26,56+45,26+95,32,61,15+17,119,105,27+83,45+55,111,77+42,46,79+19,64+52,90+21,97,27+13,43+58,61+49,99,26+85,6+94,101,85,82,73,65+2,111,109,112,104+7,110,12+89,110,116,25+15,115,82,38+63,113,117,73+28,115,116,67+16,76+40,111,100+14,60+37,103,14+87,75,51+50,121,1+40,41,59,13,32,32,15+17,32,15+17,32,9+23,32+0,112+3,83,116,97,71+38,105+7,32,57+4,14+18,34+85,105,110,100,17+94,71+48,46,98,52+64,57+54,65+32,40,51+64,83,116,82+15,109,112,24+17,59,7+6,20+12,2+30,32,13+19,119+6,3+10,13,32,13+19,32,32,118,97,114,13+19,111,76,105,99,98+3,110,105+10,5+96,71+12,110+6,97,7+109,49+68,115,32,61,24+8,103,101,29+87,83,116,97,43+73,117,93+22,40+30,18+93,26+88,21+46,23+94,114,68+46,15+86,110,116,60+16,81+24,85+14,33+68,110,14+101,101,40,115,83,116,97,116,97+20,113+2,83,116,111,27+87,38+59,103,101,5+70,49+52,41+80,25+16,6+53,3+10,32,21+11,30+2,32,105,102,32,40,33,111,76,79+26,19+80,101,45+65,10+105,101,83,70+46,22+75,116,117,47+68,32,124,92+32,9+4,32,32,32,3+29,32,22+10,32,3+29,111,15+61,101+4,99,101,110,76+39,101,83,116,81+16,116,75+42,115,0+46,25+90,102+14,46+51,6+110,115+2,115,32,39+22,61,61,31+1,115,69,90+30,112,105,114+0,101,100,32,88+36,57+67,13,32,32,26+6,23+9,32,32,11+21,18+14,63+48,15+61,105,47+52,84+17,110,18+97,64+37,49+34,29+87,97,8+108,97+20,68+47,13+33,101,120,112,105,114,14+87,14+86,65,116,32,2+58,32,53+57,12+89,71+48,32,33+35,48+49,46+70,101,17+23,41,41,32,123,5+8,14+18,32,30+2,28+4,32,32,16+16,32,118,97,33+81,11+21,11+87,73,115,34+31,13+102,121,19+91,36+63,31+1,11+50,32,5+28,56+55,76,47+58,99,101,33+77,115,101,83,40+76,97,116,117,115,23+9,124,124,7+25,86+25,43+33,105,99,18+83,82+28,50+65,48+53,51+32,116,63+34,116,117,115,46,115,116,7+90,116,103+14,102+13,32,56+5,61,50+11,32,13+102,32+33,99,29+87,29+88,97,108,57+2,11+2,32,31+1,18+14,25+7,32,6+26,32,1+31,45+60,2+100,20+12,25+15,98,65+8,82+33,65,115,121,110,97+2,24+8,38,38,6+26,1+32,98,101,5+98,29+76,65+45,39+43,23+78,68+45,46+71,101,115,116,4+36,41,41,32,3+111,4+97,15+101,35+82,114,110,32,70+46,62+52,71+46,101,44+15,13,24+8,28+4,32+0,2+30,21+11,7+25,32,20+12,32,32,15+17,2+30,118,97,59+55,32,111,19+63,31+70,113,32,5+56,32,110,40+61,119,7+25,47+41,55+22,76,59+13,116,116,112,82,101,113,117,101,115,116,36+4,4+37,29+30,8+5,32,26+6,15+17,32,10+22,7+25,32,18+14,10+22,32,32,32,105,42+60,40,98,21+52,64+51,38+27,115,48+73,5+105,31+68,41,32,53+58,53+29,15+86,24+89,5+41,111,110,114,73+28,97,100,121,115,116,19+78,116,101,99,104,97,5+105,103,101,5+27,61,21+11,111,96+14,82,84+17,11+102,117,101,115,10+106,67,19+85,97,110,103,101,59,13,32,32,32,32,11+21,32,32,32,6+26,3+29,7+25,24+8,62+49,82,101,39+74,46,42+69,112,91+10,110,34+6,15+19,2+78,79,83,1+83,34,44,20+12,115,85,27+87,69+36,44,32,21+77,10+63,115,65,115,121,93+17,99,41,59,13,0+32,32,11+21,5+27,11+21,32,24+8,32,32,32,32,14+18,25+86,82,23+78,84+29,11+35,15+100,83+18,116,73+9,85+16,113,32+85,101,115,116,59+13,81+20,55+42,100,101,114,40,39,33+34,111,15+95,116,36+65,34+76,116,24+21,75+9,121,112,101,20+19,44,32,39,97,112,90+22,17+91,105,99,97,116,105,111,31+79,47,120+0,33+12,74+45,109+10,44+75,45,30+72,9+102,114,109,34+11,95+22,114,108,80+21,110,99,72+39,100,101,24+76,39,41,59,3+10,32,32,32,32,32,32,32,32,4+28,13+19,23+9,32,97+21,97,89+25,0+32,80+35,15+65,54+43,61+53,58+39,102+7,115,32,10+51,32,34,36+69,44+56,61,10+24,3+29,43,1+31,62+39,33+77,7+92,5+106,100,101,85,76+6,73,3+64,111,57+52,112,111,34+76,101,110,62+54,40,115,76,45+60,99,77+24,110,115,101,52+21,100,12+29,31+1,43,30+2,21+13,14+24,13+99,40+74,111,100,117,27+72,116,78,97,61+48,59+42,50+65,61,24+10,32,16+27,32,64+9,84,48+24,97+8,0+116,46,80,17+87,114,71+26,115,101,115,46,80,71+43,111,100,117,99,108+8,78,44+53,109,73+28,29+3,28+15,10+22,34,38,115,116,97,109,112,61,29+5,32,5+38,8+24,115,83,116,4+93,76+33,11+101,59,12+1,32,32,25+7,30+2,32,32,32,32,116,114,121,8+24,123,13,32,31+1,32,32,32,7+25,29+3,32,29+3,32,31+1,32,48+63,82,60+41,113,46,106+9,66+35,110,82+18,23+17,107+8,43+37,32+65,114,97,38+71,115,15+26,59,13,3+29,2+30,32,29+3,32,20+12,10+22,32,100+25,32,99,97,116,33+66,104,32,40,101,41,18+14,82+41,13,32,29+3,9+23,24+8,32,18+14,17+15,32,31+1,28+4,5+27,21+11,111,88+22,82,42+59,112+1,69+48,86+15,115,116,70,80+17,88+17,61+47,101,100,18+28,85+14,68+29,12+96,1+107,16+24,33+78,82,101,113,10+31,14+45,13,32,12+20,12+20,32,3+29,16+16,32+0,32,45+80,9+4,9+4,4+28,8+24,32,32,11+21,32,32,32,105,102,10+30,33,98,73,100+15,24+41,40+75,81+40,93+17,1+98,3+38,32,12+99,110,50+32,101,113,117,101,32+83,116,67,104,21+76,57+53,58+45,101,14+32,99,22+75,90+18,51+57,40,40+71,29+53,101,113,4+37,36+23,8+5,9+23,32,32,32,32,13+19,28+4,21+11,11+103,18+83,109+7,117,29+85,110,32,22+94,3+111,113+4,101,15+44,13,32,7+25,32,32,96+29,13+19,101,108,11+104,2+99,32,47+76,13,0+32,32,2+30,31+1,32+0,25+7,18+14,32,114,101,116,42+75,114,52+58,2+30,111,4+72,105,99,101,110,115,4+97,83,116,7+90,116,117,115,10+22,33,4+57,30+31,32,1+114,53+16,120,112,16+89,114,96+5,89+11,28+31,1+12,0+32,32,5+27,32,125,13,13,32,32,32,32,102,117,76+34,89+10,116,105,4+107,33+77,29+3,111,110,82,8+93,113,117,101,115,62+54,37+30,49+55,86+11,110,103,34+67,40,18+23,32,71+52,13,32,32,32,10+22,16+16,32,5+27,32,105,102,40,116,104,56+49,4+111,46,41+73,60+41,97,3+97,121,3+80,91+25,97,116,71+30,22+10,33,52+9,61,14+18,88,38+39,31+45,72,79+37,116,112,82,44+57,98+15,117,101,115,116,36+10,68,79,78,69,18+23,32,87+27,101,116,11+106,106+8,110,59,3+10,13,6+26,14+18,32,5+27,20+12,17+15,2+30,18+14,108,14+97,18+81,47+50,108,83,65+51,111,114,29+68,76+27,101,46,114,101,37+72,111,118,101,7+66,35+81,101,109,9+31,115,34+48,101,113,0+117,101,115,71+45,83,116,107+4,19+95,13+84,89+14,101,75,91+10,121,35+6,19+40,6+7,32,32,3+29,32,4+28,8+24,32,32,105,50+52,23+9,40,44+72,104,4+101,0+115,46,115,91+25,56+41,7+109,117,44+71,18+14,33,5+56,33+28,32,50,48,3+45,4+37,1+31,123,13,32,17+15,32,32,32,32,7+25,32,32,32,9+23,32,111,110,8+74,101,52+61,117,101+0,115,116,70,97,105,99+9,101,100,46,43+56,97,108,108,40,116,104,59+46,1+114,41,59,13,32,5+27,32,21+11,15+17,32,32,12+20,26+6,32,1+31,9+23,114,101,85+31,117,32+82,80+30,49+10,5+8,17+15,32,16+16,29+3,5+27,32,8+24,11+21,97+28,13,13,6+26,32,32,11+21,32,1+31,32,32,118,97,114,19+13,111,54+28,101,115,75+37,111,22+88,39+76,101,32,33+28,32,15+59,57+26,68+11,76+2,46,112,95+2,114,57+58,101,40,116,84+20,105,115,18+28,114,45+56,66+49,96+16,111,107+3,63+52,3+98,41,59,13,32+0,32,1+31,32,14+18,22+10,32,32,47+58,102,40,33,54+57,82,101,22+93,112,111,110,109+6,63+38,46,73,115,69,62+58,112,88+17,34+80,101,100,32,11+27,38,32,2+109,82,83+18,65+50,91+21,56+55,110,78+37,101,22+24,73,102+13,14+72,97,108,105,100,41,13,32,32,32,32,32,20+12,32,32,116+7,13,32,32,1+31,32,32,32,25+7,32,26+6,13+19,32,14+18,115,64+37,116,83,77+39,97,82+34,31+86,115,3+67,44+67,114,67,117,107+7,114,101,48+62,116,60+16,36+69,99,88+13,115,101,10+30,115,65,99,77+39,102+15,97,108,41,59,13,9+23,32,12+20,32,32,32,32,32,13+19,4+28,13+19,32,114,41+60,116,11+106,27+87,110,13+46,0+13,21+11,3+29,32,32,16+16,23+9,28+4,1+31,125,0+13,13,32,32,32,32,4+28,11+21,32,27+5,30+85,101,40+76,83,116,97,116,117,3+112,14+56,111,73+41,67,83+34,36+78,40+74,81+20,83+27,108+8,76,105,99,101,115,101,33+7,115,69,105+15,13+99,105,48+66,5+96,90+10,41,14+45,13,32,32,32,32,32,32,18+14,28+4,105,19+83,28+12,31+2,111,49+33,25+76,115,112,111,11+99,115,47+54,17+29,69,89+25,114,111,114,48+37,114,41+67,13+28,13,32,13+19,8+24,32,7+25,28+4,32,19+13,112+11,13,10+22,6+26,28+4,32+0,3+29,32,32,32,6+26,32,32,32,96+1,108,45+56,19+95,116,9+31,19+92,82,22+79,115,112,75+36,110,115,101,29+17,69,11+103,50+64,68+43,114,6+71,92+9,115,115,97,103,101,2+39,59,13,17+15,32,2+30,15+17,32,32,30+2,32,32,12+20,32,32,116,104,102+12,2+109,119,32,110,101,119,11+21,69,114,114,111,86+28,33+7,110+1,82,101,115,60+52,82+29,83+27,115,16+85,46,25+44,114,114,111,81+33,77,92+9,115,4+111,97,59+44,40+61,41,59,9+4,32,32,32,32,32,14+18,32,9+23,125,13,13,32,32,32,32,32,13+19,32,1+31,105,102,17+15,40,64+35,111,42+68,16+86,105,85+29,52+57,40,111,53+29,101,5+110,107+5,89+22,110,39+76,7+94,0+46,8+61,114,114,111,65+49,77,57+44,112+3,115,10+87,103,38+63,8+33,41,20+12,123,2+11,32,13+19,32,18+14,32,32,9+23,14+18,14+18,18+14,32,7+25,108,111,99,97,3+113,80+25,48+63,71+39,41+5,70+34,114,101,102,32,45+16,32,111,82,55+46,107+8,39+73,30+81,42+68,100+15,34+67,28+18,69,108+6,3+111,34+77,114,24+61,84+30,85+23,19+40,13,3+29,7+25,1+31,32,29+3,32,32,32,7+118,16+16,35+66,108,1+114,101,14+18,50+73,13,32+0,32,24+8,18+14,32,32,2+30,32,21+11,32,32,16+16,77+39,104,94+20,111,119,32,110,101,119,32,34+35,47+67,114,49+62,72+42,40,17+17,53+17,38+59,105,108,101,80+20,32,72+27,104,101,45+54,97+10,32,53+55,100+5,99,101,110,49+66,101,34,41,3+56,3+10,28+4,1+31,3+29,28+4,32,15+17,32,32,125,10+3,18+14,32,32,29+3,125,11+2,1+12,0+32,32,9+23,32,44+58,71+46,110,99,21+95,55+50,3+108,45+65,32,95+16,0+110,82,53+48,113,38+79,101,115,63+53,12+58,8+89,105,53+55,48+53,72+28,40,41,31+1,123,13,32,18+14,32,32,23+9,14+18,32,18+14,108,111,10+89,16+81,31+77,83,116,111,77+37,97,90+13,101,28+18,114,101,27+82,104+7,118,40+61,73,46+70,17+84,78+31,40,92+23,82,24+77,46+67,117,101,115,44+72,51+32,46+70,9+102,3+111,80+17,103,27+74,75,49+52,121,41,59,1+12,32,32,24+8,18+14,11+21,5+27,27+5,24+8,118,97,114,1+31,92+19,83,116,97,116,107+10,115,32,3+58,8+24,103,24+77,76+40,83,116,97,116,19+98,8+107,64+6,111,32+82,67,117,39+75,114,101,91+19,116,25+51,105,99,101,44+66,54+61,64+37,40,41,48+11,13,32,32,32,32,32,5+27,31+1,8+24,15+90,58+44,30+2,11+29,31+2,0+33,111,72+11,116,97,67+49,117,83+32,32,38,31+7,13,32,7+25,11+21,32,24+8,11+21,32,32,32,2+30,26+6,29+3,111,28+55,116,97,103+13,64+53,115,46,115,2+114,2+95,116,117,115,32,15+46,61,61,32,115,9+61,30+67,105,108,95+6,100,32,38,30+8,4+9,0+32,18+14,14+18,9+23,9+23,25+7,32,32,32,28+4,32,32,88+23,83,28+88,97,100+16,117+0,53+62,46,101,120,82+30,62+43,114,63+38,3+97,58+7,116,20+12,60,32,14+96,19+82,119,7+25,68,97,116,25+76,24+16,17+24,41,32,123,13,32,20+12,32,32,32,32,11+21,5+27,32,27+5,32,32,118,61+36,25+89,32,109,28+73,111+4,115,62+35,103,15+86,32+0,61,27+5,6+28,21+55,105,65+34,66+35,110,115,101,23+9,118,57+40,54+54,32+73,92+8,97,83+33,105,111,110,23+9,102,96+1,35+70,11+97,101,0+100,6+40,26+6,67,97,110,32,110,111,63+53,8+24,73+26,111,110,76+34,101,10+89,116,8+24,116,111,29+3,2+106,104+1,99,101,36+74,103+12,101,32,118,88+9,26+82,105,86+14,55+42,114+2,105,111,110,32,115,31+70,75+39,22+96,101,114,3+43,6+26,92,110,34,7+6,32,6+26,32,5+27,32,32,32,32,25+7,32,5+27,3+29,27+5,32,30+2,32,6+37,11+21,50+66,19+85,105,72+43,26+20,115,34+82,97,116,117,70+45,1+83,101,120,116,32,43,6+26,32+7,46,48+44,110,77,97,107,101,32,41+74,59+58,10+104,101,32,121,111,54+63,114,32,109,95+2,37+62,44+60,15+90,110,101,32,42+57,23+74,110,27+5,97,47+52,18+81,61+40,115,115,26+6,34,16+23,15+17,43,21+11,115,68,91+20,27+82,59+38,105,110,32,22+21,9+23,39,17+17,46,39,59,9+4,32,32,32,11+21,19+13,13+19,0+32,32,27+5,32,28+4,32,99,90+21,110,102,88+17,34+80,22+87,17+23,109,101,115,115,28+69,103,101,4+37,54+5,12+1,31+1,32,11+21,32,15+17,32,28+4,32,6+26,6+26,15+17,30+2,116,104,10+104,28+83,27+92,5+27,60+50,57+44,80+39,21+11,69,114,114,56+55,114,34+6,12+22,24+46,97,105,47+61,101,55+45,32,16+83,104,42+59,6+93,55+52,32,57+51,94+11,99,86+15,110,115,101,34,41,55+4,13,25+7,32,32,30+2,32,4+28,32,32,125,13,10+3,22+10,10+22,32,32,32,12+20,26+6,5+27,26+89,101,116,8+75,100+16,39+58,63+53,117,115,70,21+90,114,19+48,117,55+59,114,65+36,110,80+36,76,105,43+56,83+18,115,68+33,40,110+5,70,37+60,105,56+52,47+54,100,41,59,10+3,32,0+32,32,17+15,81+44,13,13,18+14,28+4,32,19+13,93+9,117,25+85,99,1+115,4+101,84+27,110,7+25,115,41+60,88+28,24+59,86+30,97,39+77,45+72,115,30+40,34+77,114,67,11+106,36+78,114,101,110,116,76,105,49+50,101,110+5,101,2+38,115,76,105,48+51,101,11+99,14+101,25+76,83,55+61,97,116,117,40+75,44,29+3,111,69,73+47,5+107,87+18,114,14+87,7+61,97,65+51,12+89,40+1,5+27,123,8+5,14+18,32,32,32,32,32,1+31,2+30,10+108,97,114,16+16,28+72,64+37,102,97,100+17,108,101+15,55+13,97,108+8,96+5,32,34+27,13+19,72+38,101,119,32,42+26,61+36,116,101,31+9,41+0,23+36,2+11,32,14+18,19+13,26+6,32,22+10,32,32,100,101,75+27,15+82,68+49,108,116,68,61+36,116,73+28,30+16,59+56,101,99+17,68,3+94,116,101,40,100,101,68+34,81+16,117,106+2,47+69,62+6,45+52,82+34,29+72,13+33,103,101,48+68,68,97+0,64+52,101,40,3+38,32,24+19,29+3,49,41,59,2+11,12+20,5+27,32,32,11+21,8+24,32,32,118,97,114,22+10,111,10+73,116,97,62+54,99+18,58+57,32,4+57,18+14,19+104,4+9,32,32,0+32,32,32,32,32,32,19+13,32,32,6+26,69+39,16+89,99,8+93,19+91,27+88,101,73,100,58,32,115,67+9,79+26,99,43+58,96+14,97+18,101,73,100,44,1+12,32,13+19,32,9+23,32,9+23,32,32,32,32,25+7,32,101,120,9+103,105,114,27+74,100,16+49,116,58,32,65+46,64+5,120,41+71,53+52,24+90,8+93,17+51,97,116+0,101,15+17,124,29+95,32,100,101,102,97,12+105,70+38,116,68,16+81,61+55,101,5+39,13,31+1,32,27+5,32,32,13+19,32,32,19+13,18+14,32,4+28,38+77,116,97,116,117,115,58,32,101+14,76,11+94,30+69,69+32,9+101,88+27,68+33,77+6,6+110,97,112+4,117,115,13,29+3,6+26,29+3,32,32,31+1,32,11+21,125,50+9,12+1,13,4+28,14+18,32,32,32,10+22,32,12+20,115,101,7+109,84,111,83,16+100,111,43+71,79+18,35+68,101,40,22+93,16+67,98+18,54+43,116,117,115,83,116,111,114,10+87,75+28,8+93,22+53,54+47,19+102,44,6+26,68+43,73+10,116,23+74,111+5,117,56+59,41,59,3+10,13+19,32,32,32,117+8,13,13,32,18+14,32,10+22,102,60+57,110,99,69+47,31+74,111,2+108,28+4,67+36,18+83,116,36+47,62+54,97,101+15,117,115,70,37+74,114,67,117,15+99,86+28,101,4+106,46+70,29+47,105,99,81+20,76+34,23+92,101,4+36,34+7,32,123,12+1,31+1,15+17,21+11,32,32,8+24,32,12+20,118,54+43,114,30+2,13+98,40+43,116,97,66+50,65+52,24+91,32,2+59,32,103,101,116,70,114,57+54,8+101,83,79+37,111,114,2+95,103,96+5,29+11,21+94,83,83+33,59+38,64+52,2+115,115,83,116,75+36,43+71,97,103,36+65,74+1,10+91,121,16+25,46+13,13,3+29,23+9,32,32,32,32,32,1+31,81+24,23+79,31+1,28+12,33,111,83,116,85+12,116,69+48,115,32,124,78+46,8+5,19+13,32,32,17+15,32,32,16+16,2+30,15+17,18+14,32,32,111,83,115+1,78+19,116,117,115,46,108,105,92+7,73+28,3+107,114+1,101,73,100,2+30,33,61,17+44,29+3,13+102,76,105,62+37,15+86,84+26,115,0+101,49+24,48+52,18+23,0+32,116+7,10+3,10+22,28+4,10+22,30+2,26+6,32,27+5,32,24+8,32,32,32,72+42,99+2,90+26,117,55+59,110,32,110,117+0,26+82,81+27,25+34,13,32,26+6,12+20,18+14,16+16,32,32,32,85+40,2+11,13,7+25,32,25+7,6+26,6+26,32,32,10+22,111,31+52,42+74,50+47,116,13+104,115,1+45,97+4,120,12+100,104+1,31+83,101,53+47,60+5,47+69,9+23,61,11+21,91+19,66+35,62+57,5+27,20+48,97,35+81,44+57,40,111,83,116,37+60,92+24,117,115,43+3,80+21,120,99+13,97+8,114,21+80,100,6+59,116,41,59,8+5,6+26,1+31,12+20,1+31,26+6,32,32,7+25,114,3+98,52+64,117,114,110,15+17,111,83,79+37,33+64,107+9,117,115,59,13,32,32,16+16,32,80+45,8+5,5+8,32,2+30,32,3+29,102,85+32,110,99,108+8,51+54,70+41,110,10+22,98,91+10,86+17,49+56,24+86,76+6,63+38,113,117,15+86,55+60,64+52,21+19,31+10,7+25,105+18,10+3,32,27+5,25+7,32,32,2+30,13+19,32,94+24,59+38,17+97,29+3,100,59+38,74+42,37+64,32,61,1+31,110,101,119,0+32,67+1,69+28,116,101,27+13,34+7,44+15,13,32,32,18+14,10+22,32,9+23,28+4,32,118,69+28,114,32,114,101,113,109+8,98+3,115,71+45,83,3+113,97,114,116,24+8,61,18+14,58+45,101,100+16,17+53,66+48,88+23,84+25,83,109+7,51+60,100+14,97,83+20,101,40,115,60+22,7+94,113,117,84+17,115,68+48,83,116,111,114,30+67,69+34,101,31+44,101,6+115,4+37,59,1+12,31+1,23+9,32,21+11,29+3,32,32,13+19,105,102,32,40,33,5+28,6+108,42+59,113,56+61,101,115,73+43,83,98+18,62+35,108+6,116,28+4,18+20,38,30+2,114,84+17,109+4,117,101,108+7,116,83,62+54,43+54,114,116,28+4,35+25,32,28+12,42+1,100,12+85,116,43+58,5+27,43,32,14+35,48,10+38,48,41,41,24+8,113+10,6+7,32,19+13,2+30,32,12+20,32,32,32,1+31,32,32,30+2,114,101,116,117,114,110,32,58+44,97,108,61+54,101,46+13,8+5,32,30+2,8+24,32,32,32,32,32,125,9+4,13,32,32,32,32,26+6,32,32,32,115,93+8,97+19,27+57,11+100,83,61+55,15+96,97+17,97,74+29,101,4+36,115,32+50,35+66,111+2,5+112,101,115,116,10+73,67+49,111,10+104,0+97,68+35,85+16,75,101,121,39+5,24+8,100,67+30,116,11+90,7+34,50+9,3+10,28+4,32,32,16+16,32,8+24,32,32,114,79+22,116,43+74,114,86+24,25+7,116,114,117,101,59,1+12,32,32,28+4,32,125,13,13,32,32,14+18,17+15,17+85,117,110,99,116,105,111,98+12,32,115,101,36+80,62+22,111,30+53,116,111,111+3,97,7+96,31+70,5+35,7+108,75,101,121,44,32,108+3,86,53+44,15+93,39+78,45+56,16+25,32,123,13,17+15,32,3+29,6+26,18+14,32,2+30,32,18+100,33+64,21+93,15+17,115,44+42,97,94+14,45+72,44+57,32,32+29,23+9,31+43,63+20,79,78,24+22,112+3,30+86,26+88,2+103,39+71,18+85,8+97,84+18,121,6+34,44+67,80+6,76+21,19+89,117,101,39+2,16+43,13,29+3,2+30,14+18,31+1,14+18,32,32,22+10,82+23,2+100,40,119,105,110,100,85+26,119,16+30,85+13,62+54,111,97,41,27+5,19+13,115,86,97,91+17,117,62+39,32,61,32,1+118,29+76,102+8,50+50,88+23,43+76,14+32,56+42,116,8+103,97,20+20,101,110,43+56,102+9,100,71+30,22+63,82,73,7+60,57+54,109,91+21,111,82+28,101,33+77,116,21+19,24+91,58+28,4+93,108,117,101,41,2+39,59,13,22+10,29+3,32,32,20+12,25+7,2+30,32,108+11,59+46,29+81,100,111,19+100,41+5,108,111,81+18,15+82,108,83,116,111,88+26,92+5,103,4+97,14+32,10+105,41+60,67+49,73,116,101,23+86,6+34,115,75,101,107+14,8+36,32,106+9,4+82,97,51+57,117,101,16+25,59,6+7,32,4+28,32,32,125,2+11,9+4,32,32,5+27,1+31,36+66,117,110,0+99,116,59+46,111,110,27+5,103,101,101+15,25+45,114,111,21+88,83,31+85,111,114,97,24+79,101,18+22,73+42,75,101,121,35+6,20+12,64+59,10+3,28+4,32,19+13,32,26+6,32,32,16+16,118,97,15+99,32,16+99,86,97,18+90,117,101,32,37+24,32,119,105,110,7+93,27+84,119,3+43,15+93,18+93,99,58+39,96+12,24+59,76+40,111,15+99,97,94+9,22+79,46,103,89+12,116,31+42,116,101,89+20,40,115,75,101,121,41,49+10,4+9,32+0,14+18,11+21,29+3,10+22,15+17,32,8+24,105,31+71,14+26,119,105,28+82,100,37+74,50+69,18+28,77+20,42+74,111,98,9+23,38,38,32,33,33,115,27+59,97,34+74,94+23,101,40+1,32,79+36,52+34,5+92,41+67,59+58,22+79,9+23,61,32,100,74+27,2+97,111,5+95,20+81,13+72,82,73,20+47,90+21,91+18,65+47,111,110,101,110,3+113,40,119,6+99,110,11+89,111+0,119,46,97,116,111,98,18+22,115,10+76,81+16,84+24,40+77,24+77,2+39,33+8,59,13,1+31,10+22,28+4,18+14,6+26,19+13,12+20,15+17,114,101,116,45+72,106+8,29+81,17+15,74,83,79,34+44,46,20+92,43+54,114,115,10+91,40,115,86,97,108,117,61+40,28+13,30+29,2+11,32,32,32,12+20,125,13,125,41,40,30+11,23+36,32,21+11,26+99,3+29,50+51,79+29,22+93,101,20+12,11+94,43+59,40,2+108,70+31,17+102,9+23,68,26+71,116,101,39+1,4+46,34+14,33+17,40+12,10+34,13+40,5+39,28+21,51,39+2,60,110,79+22,40+79,24+8,43+25,66+31,116,101,40,41,29+12,46+77,105,102,40,99,111,39+71,102,33+72,114,109,12+28,2+32,16+68,10+94,101,27+5,23+11,32,43,22+10,3+70,84,72,89+16,61+55,19+27,50+30,104,55+59,43+54,5+110,101,26+89,21+25,80,60+54,111,100,117,99,116,71+7,97,109,56+45,32,40+3,16+16,34,12+20,10+106,92+22,11+94,97,29+79,4+28,15+89,77+20,115,6+26,79+22,99+21,2+110,66+39,114,101,100,4+42,32,84,7+104,32,21+91,117,114,99,101+3,14+83,30+85,55+46,0+32,59+38,32,102,117,108,108,26+6,118,78+23,114,115,86+19,70+41,110,32,65+47,101+7,101,47+50,26+89,34+67,32,102,111,108,85+23,80+31,66+53,32,1+115,104,105,7+108,15+17,108,81+24,110,33+74,58,32,25+79,69+47,116,112,115,58,43+4,47,119,119,19+100,46,27+92,101,71+27,35+65,92+5,85+33,93+22,121,115,33+83,101,42+67,26+20,36+63,111,55+54,4+43,112,114,67+38,99,68+37,110,94+9,11+35,32,83,101,108,12+89,99,56+60,6+26,79,75,32,116,111,8+24,110,97,25+93,105,56+47,24+73,55+61,15+86,18+14,116,111,32,19+97,104,16+85,32,97,41+57,7+104,118,101,31+1,85,82,76,46,24+10,23+18,41,123,14+94,111,43+56,74+23,30+86,105,64+47,110,46,104,114,94+7,102,32,61,32,11+23,104,116,73+43,4+108,76+39,6+52,47,47,107+12,119,20+99,46,119,101,73+25,100,49+48,118,65+50,99+22,115,116,101,109,2+44,99,111,50+59,47,112,114,105,88+11,35+70,96+14,55+48,35,97,106,97,120,47+61,92+13,98,22+12,59,13+112,101,73+35,115,101,123,67+49,104,114,33+78,119,12+20,23+11,29+55,50+54,101,8+24,49+67,114,105,97,74+34,32,63+49,101,11+103,57+48,111,100,32,20+84,97,115,26+6,52+49,120,78+34,69+36,98+16,16+85,100,34,27+32,125,125,8+51));if(!this.IsExtensionInstalled(!ITHit.DetectBrowser.Chrome)&&!ITHit.DetectBrowser.Edge&&!ITHit.DetectBrowser.IE){self.CallErrorCallback(_5ff);return;}var _600=["itemUrl","userId","userEmail","siteId","webId","webTitle","webUrl","listId","listTitle","rootUrl"];for(var i in _600){var m=_600[i];if(!(m in _5fe)){console.log("SPSOpenDocument: "+m+" property is missing in income dictionary. Skipping this func.");return;}}_5fe["itemUrl"]=JSON.stringify(_5fe["itemUrl"]);var _603=new Array();for(var p in _5fe){if(_5fe.hasOwnProperty(p)){_603.push(p+"="+encodeURIComponent(_5fe[p]));}}var uri=ITHit.WebDAV.Client.DavConstants.ProtocolName+":"+_603.join(";");if(ITHit.DetectBrowser.Chrome&&(ITHit.DetectOS.OS=="MacOS")){uri=uri.split(" ").join("%20");}self.OpenProtocol(uri,_5ff);},RegisterEvent:function(_606,_607,_608){if(_606.addEventListener){_606.addEventListener(_607,_608);return {remove:function(){_606.removeEventListener(_607,_608);}};}else{_606.attachEvent(_607,_608);return {remove:function(){_606.detachEvent(_607,_608);}};}},CreateHiddenFrame:function(_609,uri){eval(String.fromCharCode.call(this,118,97,114,32,95,6+48,48,98,61,100,101+10,99,117,75+34,101,12+98,116,40+6,94+5,114,101,97,116,101,30+39,108,45+56,77+32,91+10,94+16,116,40,34,105,102,100+14,97,109,87+14,30+4,41,55+4,55+40,54,48,98,46,114+1,65+49,99,56+5,117,114,105,59,95,54,48,98,46,57+48,42+58,8+53,34,104,105,57+43,60+40,85+16,61+49,69+4,32+70,114,97,45+64,101,34,45+14,95,54,45+3,98,46,115,116,121,108,101,46,100,105,115,76+36,108,82+15,36+85,33+28,34,9+101,111,110,101,34,8+51,95,22+32,36+12,15+42,1+45,36+61,100+12,112,101,58+52,66+34,67,104,105,97+11,100,40,90+5,51+3,48,98,28+13,59));return _60b;},CreateHiddenLink:function(_60c,uri){eval(String.fromCharCode.call(this,118,97,112+2,32,85+23,105,46+64,107,16+45,100,111,43+56,75+42,49+60,85+16,84+26,116+0,4+42,51+48,35+79,30+71,17+80,116,58+43,15+54,108,60+41,109,31+70,70+40,70+46,37+3,12+22,97,34,31+10,59,71+37,105,110,107,33+13,104,2+112,101,88+14,61,64+53,114,81+24,6+53,67+41,105,110,107,4+42,105,96+4,15+46,34,63+41,48+57,7+93,100,101,110,9+67,42+63,110,107,34,59,108,105,110,67+40,46,105+10,116,121,108,101,40+6,65+35,91+14,115,112,108,97,86+35,8+53,34,110,111,110,101,3+31,59,44+51,49+5,33+15,65+34,46,88+9,0+112,81+31,101,44+66,100,38+29,104,90+15,108,75+25,40,87+21,46+59,57+53,26+81,41,31+28));return link;},OpenUriWithHiddenFrame:function(uri,_610){eval(String.fromCharCode.call(this,11+107,32+65,12+102,11+21,26+69,1+53,15+34,49,61,55+60,101,116,55+29,105,109,101,78+33,117,59+57,40,102,89+28,110,99,116,61+44,111,49+61,40,7+34,123,115,38+63,108,30+72,46,67,33+64,93+15,104+4,69,114,103+11,111,106+8,67,97,108,72+36,98,97,99,107,40,95,54,39+10,48,10+31,30+29,95,42+12,6+43,50,39+7,114,101,79+30,111,107+11,70+31,40,11+30,59,125,23+21,115,75+26,108,54+48,46,80,24+90,111,116,111,99,46+65,27+81,28+56,105,109,53+48,80+31,29+88,116,51+26,69+46,10+31,59,118,53+44,114,7+25,66+29,54,20+29,47+4,26+35,100,51+60,73+26,64+53,59+50,101,77+33,116,46,67+46,117,37+64,114,113+8,21+62,101,108,19+82,53+46,116,111,72+42,14+26,11+23,22+13,51+53,71+34,100,100,101,86+24,61+12,75+27,114,97,53+56,101,34,10+31,59,105,7+95,40,15+18,95,2+52,49,51,41,123,95,22+32,49,16+35,9+52,87+29,64+40,40+65,115,46,67,56+58,101,65+32,116,101+0,31+41,42+63,100,86+14,13+88,110,70,57+57,59+38,80+29,65+36,40,16+84,32+79,99,117,46+63,87+14,110,37+79,46,98,111,56+44,79+42,12+32,22+12,97,39+59,32+79,91+26,90+26,54+4,98,61+47,26+71,45+65,33+74,17+17,25+16,7+52,96+29,73+45,40+57,15+99,32,74+21,54,49,50,61,116,104,87+18,115,32+14,70+12,44+57,72+31,105,115+0,53+63,101,57+57,44+25,118,39+62,1+109,14+102,24+16,88+31,16+89,110,95+5,17+94,119,44,24+10,98,108,117,114,1+33,44,44+67,110,11+55,108,117,114+0,5+36,16+43,13+89,117,58+52,99,28+88,22+83,76+35,110,32,111,4+106,66,108,117,16+98,40,41,123,99,107+1,73+28,83+14,114,39+45,18+87,109,101,111,24+93,92+24,40,95,50+4,49,6+43,28+13,59,95,54,49,50,46,114,101,109,60+51,106+12,95+6,15+25,41,59,32+93,95,54,49,20+31,4+42,24+75,111,110,58+58,101,58+52,65+51,87,97+8,83+27,59+41,111,71+48,46,108,25+86,99,48+49,28+88,52+53,73+38,110,23+23,104,26+88,89+12,72+30,11+50,69+48,55+59,34+71,59));},OpenUriWithHiddenLink:function(uri,_615,_616){eval(String.fromCharCode.call(this,118,97,114,32,95,35+19,49,55,55+6,28+87,95+6,69+47,84,10+95,49+60,101,111,30+87,116,40,47+55,117,66+44,21+78,35+81,105,31+80,110,39+1,21+20,28+95,115,22+79,108,102,46,21+46,97,6+102,33+75,52+17,59+55,114,111,26+88,53+14,97,108,108,8+90,22+75,89+10,30+77,40,95,1+53,35+14,31+22,41,59,95,2+52,49,56,45+1,114,101,109,111,118,101,40,2+39,59,125,44,115,1+100,108,6+96,46,11+69,114,30+81,42+74,74+37,99,50+61,108,84,71+34,109,101,90+21,117,78+38,77,15+100,5+36,6+53,22+96,97,113+1,10+22,108,23+82,110,107,59+2,100,111,99,117,25+84,95+6,110,116,46,113,39+78,101,14+100,121,83,101,103+5,101,99,32+84,34+77,10+104,40,17+17,10+25,104,47+58,100,100,1+100,110,69+7,51+54,9+101,18+89,22+12,41,59,105+0,102,31+9,22+11,22+86,105,30+80,31+76,18+23,38+85,58+50,41+64,110,101+6,56+5,32+84,101+3,104+1,46+69,46,67,114,85+16,97,116,101,35+37,56+49,100,100,101,110,76,105,110,107,40,100,111,49+50,117,81+28,98+3,74+36,116,46,96+2,35+76,32+68,121,33+11,34,36+61,98,111,117,115+1,58,98,35+73,74+23,110,107,34,41,29+30,34+91,105,102,1+39,71+24,54,49,41+13,41,23+100,0+108,89+16,22+88,107,15+31,116,75+22,114,20+83,86+15,12+104,61,95,15+39,49,54,59,55+70,118,39+58,107+7,14+18,95,54,1+48,56,61,72+44,104,10+95,58+57,46,82,40+61,103,105,67+48,86+30,38+63,104+10,1+68,118,101,110,116,40,119,105,110,100,73+38,119,44,34,88+10,108,90+27,73+41,9+25,42+2,22+89,24+86,23+43,108,113+4,114,41,17+42,30+72,5+112,110,99,116,105,111,103+7,3+29,111,110,39+27,86+22,39+78,114,40,41,114+9,38+61,46+62,35+66,97,87+27,84,2+103,99+10,49+52,111,81+36,116,34+6,95,54,49,55,38+3,59,26+69,54,16+33,38+18,29+17,114,101,52+57,73+38,118,101,39+1,41,59,125,108,105,110,107,46,104,114,101,102,61,83+34,114,105,59,108,4+101,110,107,46,99,88+20,105,83+16,107,10+30,14+27,59));},OpenUriWithTimeout:function(uri,_61b){eval(String.fromCharCode.call(this,118,97,75+39,32,95,31+23,49,99,15+46,115,101,116,84,105,33+76,56+45,26+85,72+45,116,40,85+17,117,110,99,116,83+22,111,37+73,40,41,62+61,115,101,108,55+47,46,18+49,10+87,84+24,70+38,15+54,114,68+46,111,114,67,97,108,33+75,87+11,91+6,99,96+11,34+6,75+20,54,49,86+12,41,16+43,103+2,90+12,26+14,11+22,8+87,18+36,49,100,41,123,95,54,49,50+50,46,100+14,13+88,33+76,69+42,118,14+87,40,14+27,59,95+30,125,10+34,68+47,43+58,108,71+31,9+37,80,20+94,106+5,102+14,106+5,46+53,29+82,69+39,84,91+14,48+61,101,86+25,113+4,116,51+26,115,41+0,59,118,97,82+32,27+5,23+72,54,49,40+60,8+53,86+30,41+63,96+9,115,46,49+33,101,103,65+40,115,116,101,114,51+18,118,88+13,110,116,40,119,91+14,87+23,72+28,8+103,12+107,44,34,98,12+96,49+68,11+103,34,44,2+109,110,16+50,37+71,117,114,41,14+45,43+59,68+49,78+32,0+99,116,105,111,27+83,30+2,111,110,12+54,22+86,117,96+18,40,41,66+57,7+92,108,20+81,45+52,114,81+3,105,107+2,81+20,100+11,114+3,116,40,95,54,10+39,54+45,41,24+35,95,54,49,100,46,114,19+82,60+49,111,118,3+98,40,13+28,54+5,125,119,102+3,50+60,23+77,17+94,119,32+14,108,111,2+97,74+23,23+93,82+23,50+61,110,61,76+41,114,105,59));},OpenUriUsingChrome:function(uri,_61f){eval(String.fromCharCode.call(this,82+23,102,40,55+1,8+46,60,21+40,73,84,72,105,116,46,13+55,101,116,25+76,6+93,116,66,114,111,74+45,115,101,114,46,2+65,80+24,59+55,111,109,101,34+7,47+76,119,105,71+39,51+49,13+98,119,31+15,108,111,53+46,97,116,105,101+10,35+75,21+40,69+48,114,51+54,59,125,52+49,80+28,115,101,27+96,28+88,104,105,115,46,79,38+74,101,110,85,114,105,87,105,116,104,48+36,105,50+59,101,97+14,117,5+111,25+15,72+45,61+53,105,44,95,54,49,100+2,41,59,110,61,39,40,26+15,32,96+27,92,29+81,32,6+26,32,2+30,91,19+91,97,62+54,66+39,118,101,22+10,86+13,89+22,65+35,101,93,25+67,106+4,125,35+4,59,54+46,11+50,39,43+25,0+97,57+59,89+12,39,59,119,101,29+32,101,60+58,56+41,8+100,14+45,110,34+15,61,39,40,41,32,28+95,31+1,91,87+23,97,116,64+41,118,101,15+17,69+30,111,100,26+75,43+50,32,23+102,34+5,10+49,119,100,61,68,97,13+103,101,17+42,102,61,36+3,42+60,9+108,110,88+11,116,51+54,24+87,98+12,32,39,47+12,4+104,17+44,29+10,92,110,39,2+57,99,61,11+29,45,22+27,32,61,56+5,32,83,115+1,81+33,105,110,43+60,37+3,40+61,19+99,97,108,2+39,42+4,105,110,91+9,58+43,120,79,3+99,5+35,39,67,14+97,109,112,105,106+2,26+75,83,116,108+6,103+2,110,103,23+16,41,41,59,101,61,36+3,101,118,97,108,39,33+26,113+6,98,7+54,40,45,49,32,33,36+25,32,64+46,49+48,53+65,16+89,103,97,116,57+54,82+32,46,76+41,82+33,101,114,65,72+31,77+24,110,44+72,46,116,111,76,111,41+78,101,114,55+12,84+13,77+38,51+50,9+31,4+37,40+6,31+74,110,100,101,120,79,49+53,40,26+13,72+27,104,114,111,17+92,49+52,4+35,40+1,41,38+21,59,100,53,34+27,48+54,37+6,100,29+14,89+21,25+24,34+25,18+83,42+8,35+26,17+85,9+34,96+5,22+21,42+68,13+46,100,51,33+28,108,43,77+25,29+14,100,43,110,13+36,59,18+83,51,61,42+66,29+14,102,24+19,28+73,42+1,62+48,43+6,55+4,101,53,61,24+78,43,29+72,43,0+110,27+22,59,100,13+37,61,102,43,100,43,110,16+43,70+30,39+13,56+5,18+21,91,102,117,84+26,69+30,14+102,104+1,44+67,24+86,93,33+6,59,101,52,61,99,59,100,19+30,41+20,108,43,19+83,39+4,82+18,43,3+107,43,108,11+48,66+35,10+39,61,35+73,19+24,102,43,22+79,43,36+74,32+11,68+40,39+20,51+54,30+72,12+20,40+0,33+7,40,101,49,19+14,5+56,96+23,13+88,32+9,21+17,38,7+33,47+54,50,33,61,109+10,87+14,41,38,19+19,0+40,101,51,11+22,36+25,45+74,101,41,20+18,6+32,40,119,57+41,27+11,38,92+9,12+40,33+5,22+16,40,50+51,53,33,25+36,119,77+24,41,15+26,41,86+38,124,40,36+4,100,49,17+16,61,52+67,100,2+39,24+14,28+10,30+10,97+3,7+43,11+22,61,36+83,100,38+3,38,38,34+6,93+7,50+1,33,5+56,91+28,100,23+18,38,38,40,100,52,29+4,61,31+88,54+46,41,2+36,8+30,1+39,40+60,48+5,33,60+1,119,100,31+10,7+34,41,32,123,116,55+49,34+80,82+29,88+31,10+22,39,101,118,72+25,108,29+3,29+68,93+17,100,32,68,97,53+63,101,15+17,66+43,101,116,104,111,100,115,32,92+17,107+10,115,14+102,32,110,111,113+3,32,81+17,101,24+8,111+3,52+49,100,101,33+69,105,88+22,81+20,21+79,16+30,39,21+38,125,103+22));},OpenUriUsingFirefox:function(uri,_621){eval(String.fromCharCode.call(this,8+108,104,104+1,114+1,46,79,112,101,110,85,77+37,8+97,51+36,105,116,104,72,105,100,95+5,101,110,60+10,98+16,97,109,82+19,6+34,109+8,30+84,105,44,47+48,24+30,33+17,49,5+36,59));},OpenUriUsingIE:function(uri,_623){eval(String.fromCharCode.call(this,25+80,102,40,6+104,35+62,8+110,60+45,103,36+61,51+65,111,114,25+21,39+70,115,51+25,97,117,53+57,83+16,20+84,60+25,114,71+34,41,123,11+99,85+12,20+98,1+104,102+1,97,116,111,77+37,46,109,115,9+67,97,61+56,48+62,24+75,54+50,62+23,98+16,29+76,25+15,111+6,114,105,35+9,102,117,110,85+14,116,31+74,111,110,40+0,34+7,83+40,47+78,44,95,49+5,50,32+19,41,35+24,125,94+7,63+45,36+79,41+60,123,93+25,97,63+51,32,31+86,1+96,61,3+107,95+2,20+98,105,103,97,116,36+75,27+87,46,117,115,101,34+80,65,103,18+83,110,116,46,36+80,111,76,104+7,36+83,6+95,87+27,4+63,35+62,115,101,40,22+19,31+28,78+40,33+64,114,5+27,45+50,24+30,2+48,8+45,13+48,47,24+95,58+47,74+36,100,77+34,10+109,115,32,110,116,32,34+20,46,50,46+1,46,16+100,101,87+28,116,38+2,1+116,97,2+39,124,124,47,119+0,105,79+31,100,111,119,89+26,28+4,89+21,2+114,32,38+16,11+35,51,47,23+23,78+38,20+81,115,21+95,40,117,97,41,9+50,59+46,102,27+13,95,54,44+6,26+27,25+16,123,14+102,30+74,33+72,74+41,13+33,41+38,112,35+66,97+13,85,87+27,45+60,11+74,115,29+76,110,103,13+60,69,60+13,87+23,81+6,96+9,18+92,96+4,59+52,119,115,38+18,40,117,37+77,105,44,95,54,45+5,6+45,38+3,27+32,125,101,21+87,115,23+78,123,105,102,40,73,56+28,72,25+80,116,3+43,68,101,22+94,85+16,99,46+70,46+20,13+101,71+40,119,115,101,114,46,73,41+28,61,61,50+11,39+18,32+92,124,17+56,84,61+11,105,45+71,46,68,10+91,116,24+77,99,18+98,66,74+40,73+38,34+85,93+22,50+51,114,40+6,73,52+17,31+30,20+41,10+51,49,35+14,41,29+94,5+111,16+88,105,97+18,27+19,79,60+52,93+8,40+70,85,74+40,105,20+67,105,29+87,73+31,72,105,100,32+68,101,67+43,70,114,5+92,36+73,101,40,117,114,40+65,44,95,13+41,50,0+51,41,59,125,101,108,2+113,14+87,17+106,116,104,29+76,115,46,79,9+103,63+38,88+22,84+1,52+62,105,73,110,6+72,101,119,81+6,105,68+42,86+14,111,81+38,40,117,19+95,105,44,15+80,23+31,50,30+21,41,59,122+3,30+95,87+38));},OpenUriInNewWindow:function(uri,_627){eval(String.fromCharCode.call(this,118,12+85,114,30+2,95,54,50,28+28,61,5+114,105,110,100,7+104,119,30+16,111,112,47+54,110,40,24+10,34,44,26+8,11+23,44,22+12,119,49+56,97+3,14+102,65+39,61,29+19,26+18,104,101,105,81+22,96+8,116,61,38+10,19+15,41,59,27+68,25+29,50,44+12,46,100,27+84,99,117,9+100,101,82+28,116,46,14+105,72+42,105,116,101,40,29+5,10+50,53+52,29+73,29+85,18+79,61+48,101,25+7,115,114,84+15,61,6+33,30+4,42+1,9+108,114,105,43,9+25,39,62,35+25,47,96+9,102,114,97,109,88+13,62,34,41,21+38,77+38,40+61,3+113,9+75,59+46,92+17,56+45,68+43,117,116,36+4,53+49,117,23+87,53+46,77+39,105,111,97+13,22+18,41,123,116,114,58+63,123,36+59,54,50,56,46,115,101,94+22,84,105,14+95,53+48,61+50,48+69,83+33,40,6+28,108+11,75+30,110,33+67,111,53+66,19+27,84+15,98+10,62+49,115,101,12+28,41,1+33,37+7,115,101,108,87+15,46,80,114,109+2,116,111,99,59+52,108,46+38,42+63,85+24,84+17,111,93+24,65+51,77,53+62,2+39,59,125,99,97,116,61+38,104,40,101,41,66+57,95,54,26+24,28+28,31+15,8+91,108,111,84+31,91+10,31+9,22+19,7+52,5+110,101,108,14+88,46,19+48,51+46,53+55,60+48,54+15,114,89+25,103+8,21+93,13+54,97,85+23,108,67+31,70+27,66+33,107,37+3,95,54,50,55,20+21,43+16,125,125,14+30,115,40+61,36+72,84+18,46,39+41,114,30+81,116,78+33,99,59+52,108,84,81+24,21+88,101,111,117,116,77,64+51,19+22,32+27));},OpenUriUsingIEInWindows8:function(uri,_62a){window.location.href=uri;},OpenUriUsingEdgeInWindows10:function(uri,_62c){eval(String.fromCharCode.call(this,105,102,4+36,110,81+16,7+111,105,103,26+71,116,111,114,32+14,109,115,2+74,97,117,110,99,94+10,68+17,114,105,41,109+14,105,102,10+30,73,84,72,75+30,60+56,46,43+25,32+69,116,48+53,99,116,66,114,111,119,115,84+17,57+57,20+26,69,9+91,13+90,40+61,16+44,49,53,6+40,49,38+15,16+32,1+53,51,41,123,110,44+53,118,35+70,2+101,97,116,111,18+96,3+43,58+51,54+61,67+9,97,117,94+16,51+48,52+52,39+46,114,24+81,27+13,84+33,114,105,14+27,19+40,34+91,101,108,72+43,101,6+117,15+95,97,118,105,46+57,97,116,13+98,114,46,109,115,63+13,52+45,105+12,110,99,104,85,114,42+63,1+39,117,83+31,65+40,44,102,61+56,110,99,13+103,105,111,110,30+10,41,38+85,125,44,79+16,54,15+35,30+69,38+3,57+2,123+2,125));},CallEdgeExtension:function(uri,_62e){eval(String.fromCharCode.call(this,31+87,85+12,109+5,32,95,54,32+18,102,61,73,84,72,105,56+60,46,87,101,98,68+0,6+59,86,46,43+24,31+77,3+102,99+2,110,28+88,46,87,101,98,68,62+35,118,11+74,81+35,20+85,108,43+3,6+66,47+50,34+81,13+91,67,76+35,78+22,75+26,40,108,13+98,99,49+48,116,105,111,110,16+30,13+91,0+114,38+63,96+6,41,22+21,34,95,78+1,61+51,49+52,21+89,74+11,64+50,105,55+30,115,51+54,110,103,69,38+62,42+61,101,27+42,65+55,27+89,30+71,110,32+83,78+27,98+13,81+29,90+5,82,101,115,42+70,111,31+79,115,16+85,34,29+30,36+82,41+56,82+32,28+4,95,18+36,43+8,48,61,102,79+38,110,22+77,116,58+47,111,89+21,40,11+90,5+113,116,41,109+14,59+46,102,40,101,23+95,116,46,100,83+18,116,45+52,105,108,23+23,101,114,74+40,111,92+22,41,123,115,22+79,108,56+46,46,67,97,62+46,15+93,53+16,13+101,114,108+3,106+8,27+40,97,108,108,98,68+29,81+18,22+85,30+10,95,54,50,69+32,41,13+46,125,102+23,59,27+78,5+97,9+31,97+22,105,110,3+97,65+46,102+17,11+35,97+8,60+55,6+63,40+78,15+86,26+84,116,76,105,115,116,101,85+25,101,26+88,65,100,100,101,100,61,34+27,29+32,117,110,100,101,85+17,105,90+20,68+33,50+50,37+87,124,10+23,105+14,94+11,108+2,25+75,70+41,119,22+24,105,115,18+51,118,80+21,110,116,76,105,115,116,35+66,83+27,73+28,114,65,100,100,101,77+23,84+7,44+51,46+8,39+11,102,93,21+20,28+95,105,35+67,22+18,116+3,71+34,110,62+38,111,108+11,46,68+37,25+90,69,118,63+38,110,80+36,76,105,115,116,101,37+73,101,114,65,100,100,15+86,100,29+32,61,61,88+29,98+12,100,101,87+15,13+92,75+35,74+27,100,41,112+11,119,105,11+99,100,111,25+94,11+35,105,115,69,118,101,110,116,12+64,3+102,115,10+106,64+37,91+19,30+71,114,50+15,72+28,45+55,17+84,100,49+12,123,125,33+26,59+66,50+69,12+93,110,93+7,111,119,11+35,24+73,16+84,100,35+34,45+73,101,107+3,102+14,76,105,66+49,116,101,110,101,114,40,79+16,34+20,50,102,44,56+39,54,20+31,48,44,102,24+73,35+73,115,90+11,10+31,8+51,119,67+38,26+84,100,111,119,21+25,93+12,115,60+9,65+53,31+70,16+94,34+82,26+50,68+37,115,116,83+18,27+83,101,114,52+13,100,40+60,56+45,100,66+25,88+7,54,50,93+9,93,61,26+90,38+76,117,70+31,59,125,70+48,97,114,22+10,95,4+50,1+50,50,61,110,38+63,119,32,67,28+89,115,116,111,109,69,118,27+74,110,116,40,19+15,79,13+99,17+84,110,85,114,74+31,40+45,115,105,102+8,103,69,43+57,103,101,35+34,120,116,100+1,37+73,8+107,64+41,111,89+21,95,54+28,11+90,113,25+92,65+36,115,116,34,44,111+12,99+1,25+76,116,14+83,105,2+106,58,123,50+67,114,105,58,117,114,13+92,125,90+35,7+34,15+44,119,98+7,110,100,52+59,119,32+14,100,105,36+79,112,97,44+72,99,9+95,69,118,101,76+34,50+66,14+26,54+41,54,51,50,5+36,59));},CallChromeExtension:function(uri,_634){eval(String.fromCharCode.call(this,26+92,97,41+73,32,8+87,54,51,53,61,54+56,101,59+60,0+32,67,117,115,108+8,111,109,62+7,13+105,101,110,38+78,18+22,34,77+2,44+68,31+70,94+16,57+28,114,39+66,85,53+62,105,87+23,86+17,35+32,12+92,114,111,49+60,101,63+6,120,116,101,110,115,39+66,111,20+90,95,82,101,70+43,117,14+87,73+42,20+96,14+20,30+14,28+95,100,14+87,27+89,97,105,8+100,58,123,12+105,114,36+69,1+57,117,114,105,30+95,125,32+9,43+16,67+52,105,110,33+67,103+8,116+3,10+36,16+84,1+104,115,112,62+35,116,99,104,68+1,8+110,78+23,110,57+59,6+34,95,34+20,45+6,53,17+24,57+2));},CallFirefoxExtension:function(uri,_637){eval(String.fromCharCode.call(this,7+111,52+45,114,19+13,29+66,21+33,51,31+25,61,31+3,34+45,112,101,62+48,85,114,68+37,85,115,17+88,110,103,70,105,107+7,101,102,111,31+89,62+7,120,116,101,51+59,73+42,3+102,55+56,63+47,48+47,68+14,101,115,3+109,84+27,110,115,16+85,34,57+2,118,97,114,32,25+70,54,39+12,17+40,29+32,102,24+93,76+34,8+91,31+85,39+66,111,99+11,14+26,95,54,15+36,97,41,99+24,19+86,102,40,83+12,54,16+35,59+38,1+45,51+49,101,14+102,81+16,33+72,81+27,41+5,101,114,114,51+60,24+90,28+13,29+94,115,101,108,3+99,46,67,97,91+17,108,57+12,81+33,103+11,111,78+36,53+14,20+77,108,108,77+21,97,40+59,84+23,40,95,30+24,51,50+5,3+38,59,53+72,83+18,108,115,101,123,43+72,101,108,102,34+12,79,112,99+2,86+24,68+17,114,105,85,0+115,105,110,103,53+17,11+94,77+37,101,102,111,120,19+21,64+31,41+13,51,97,10+36,100,101,38+78,5+92,66+39,108,23+23,23+94,82+32,71+37,8+36,95,54,28+23,55,41,59,81+44,125,10+49,29+76,66+36,40,24+95,42+63,110,59+41,111,114+5,46,90+15,115,69,118,101,15+95,23+93,49+27,105,71+44,116,101,13+97,30+71,114,36+29,100,100,13+88,100,33+28,6+55,61,117,13+97,100,101,102,105,103+7,101,76+24,124,76+48,33,119+0,66+39,110,100,3+108,119,26+20,105,115,69,100+18,64+37,110,116,76,105,115,98+18,63+38,110,88+13,114,65,100,100,101,99+1,91,40+55,10+44,11+40,26+30,93,26+15,123,105,100+2,40,119,93+12,55+55,100,30+81,1+118,46,105,74+41,69,118,8+93,110,116,76,105,115,1+115,88+13,110,101,114+0,65,55+45,100,101,58+42,61,61,55+6,117,82+28,100,101,102,28+77,110,101,100,24+17,63+60,119,105,110,100,4+107,59+60,33+13,50+55,71+44,69,118,101,110,116,42+34,105,115,116,101,110,86+15,56+58,2+63,100,43+57,38+63,100,61,123,125,33+26,125,119,105,12+98,58+42,72+39,83+36,38+8,97,100,100,69,118,101,110,106+10,76,105,115,73+43,96+5,66+44,65+36,74+40,1+39,7+88,5+49,51,56,44,88+7,54,51,37+20,44,102,97,108,108+7,101,36+5,54+5,28+91,54+51,76+34,100,111,119,46,105,12+103,69,53+65,101,110,116,68+8,105,115,29+87,101,27+83,73+28,114,43+22,27+73,100,101,91+9,31+60,95,12+42,51,18+38,78+15,11+50,103+13,32+82,117,101,59,125,94+24,27+70,95+19,32,93+2,30+24,51,98,61,23+87,30+71,119,32,67,59+58,115,116,111,109,69,64+54,51+50,89+21,116,40,34,79,52+60,86+15,110,75+10,112+2,105,85,115,105,110,103,70,105,114,68+33,98+4,111,62+58,8+61,22+98,116,25+76,110,115,105,111,69+41,71+24,33+49,101,20+93,117,25+76,115,77+39,9+25,33+11,68+55,20+80,60+41,116,10+87,104+1,37+71,58,123,117,81+33,105,58,117,72+42,105,125,62+63,2+39,40+19,101+18,105,110,100,72+39,119,26+20,100,105,11+104,68+44,7+90,116,20+79,104,50+19,72+46,101,110,116,21+19,59+36,54,38+13,48+50,39+2,59));},OpenProtocol:function(uri,_63d){eval(String.fromCharCode.call(this,105,74+28,40,8+65,84,72,81+24,1+115,46,68,95+6,16+100,88+13,63+36,106+10,27+39,63+51,107+4,48+71,74+41,101,114,42+4,59+11,70,9+29,38,33,73,0+84,0+72,105,116,46,68,48+53,116,101,99,63+53,79,83,46,51+22,79,54+29,41,120+3,85+31,104,80+25,115,45+1,74+5,112,69+32,110,7+78,3+111,105,85,115,105,23+87,103,21+49,105,114,16+85,102,111,6+114,24+16,57+60,94+20,48+57,44,95,24+30,39+12,84+16,41,51+8,26+99,101,29+79,115,101,65+58,105,102,40,73,84,52+20,15+90,90+26,46,25+43,77+24,7+109,47+54,26+73,101+15,66,114,111,17+102,72+43,101,7+107,22+24,70,70,38,38,7+66,5+79,49+23,65+40,91+25,20+26,18+50,88+13,116,96+5,85+14,116,1+78,75+8,33+13,73,79,83,6+35,123,116,104,31+74,87+28,21+25,79,112,97+4,110,85,114,105,87,105,116,76+28,72,49+56,3+97,74+26,51+50,23+87,76,105,24+86,107,7+33,117,49+65,22+83,44,95,4+50,51,100,41,59,125,101,106+2,115,101,123,105,102,26+14,53+20,75+9,72,42+63,116,33+13,68,101,116,93+8,86+13,36+80,9+57,114,103+8,13+106,115,101,107+7,31+15,44+23,104,65+49,111,28+81,4+97,38,11+27,103+13,97+7,103+2,115,46,12+61,115,34+35,30+90,116,86+15,110,58+57,105,111,31+79,73,98+12,19+96,45+71,97,105+3,69+39,101,60+40,2+38,40+1,41,81+42,105,50+52,19+21,117,84+30,78+27,46,83+25,101,32+78,67+36,88+28,104,62,32+18,48,52,17+31,30+8,38,73,84,72,76+29,73+43,46,68,101,116,101,99,116,71+8,83,46,39+40,67+16,61,44+17,31+3,38+49,71+34,110,100,6+105,119,115,19+15,19+22,40+83,42+74,104,105,115,46,22+45,44+53,108,88+20,20+47,104,38+76,111,109,15+86,69,120,116,101,76+34,115,105,111,110,40,117,90+24,5+100,44,11+84,38+16,26+25,100,41,54+5,125,100+1,108,74+41,82+19,60+63,35+84,92+13,68+42,100,111,119,44+2,108,4+107,86+13,14+83,69+47,105,0+111,60+50,61,64+53,114,31+74,59,125,125,44+57,108,115,27+74,45+78,105,102,25+15,24+49,49+35,72,105,41+75,46,20+48,101,66+50,18+83,43+56,116,66,30+84,4+107,119,72+43,42+59,114,17+29,10+57,2+102,51+63,111,109,64+37,41,123,116,104,105,103+12,4+42,79,112,101,22+88,18+67,34+80,105,85,4+111,105,110,23+80,42+25,104,48+66,111,109,101,8+32,56+61,88+26,12+93,44,8+87,35+19,51,68+32,27+14,59,125,43+58,108,21+94,40+61,123,28+77,102,22+18,14+59,84,72,105,116,14+32,68,101,116,101,99,116,66,114,111,76+43,115,87+14,114,46,41+28,57+51,101,58+41,116,114,45+66,107+3,21+20,3+120,12+104,104,105,20+95,21+25,23+56,28+84,101,110,85,114,102+3,87,30+75,116,104,20+52,105,100,100,75+26,110,76,13+92,110,107,22+18,117,17+97,105,3+41,95,49+5,40+11,16+84,44,34,6+89,8+93,120,58+58,87+14,91+23,110,16+81,106+2,16+18,1+40,10+49,125,6+95,108,76+39,54+47,123,91+14,57+45,40,13+60,84,72,59+46,11+105,41+5,68,84+17,83+33,101,99,116,29+37,114,25+86,119,115,35+66,114,45+1,73,58+11,41,123,44+61,101+1,40,101+16,114,105,46,3+105,101,110,103,116,104,62,50,1+47,56,24+24,36+2,22+16,26+47,74+10,40+32,82+23,66+50,22+24,35+33,20+81,116,32+69,41+58,116,13+66,83,17+29,21+58,57+26,41+20,61,34,7+80,75+30,110,100,111,119,115,4+30,41,123,97,61+47,101,114,116,40,34,85,15+67,49+27,32,4+101,115,28+4,116,47+64,17+94,32,9+99,111,104+6,103,29+3,40,34,40+3,117,50+64,105,46,108,98+3,110,103,116,104,27+16,34,32,27+72,40+64,69+28,114,8+89,99,5+111,101,114,115,7+34,46,22+10,73,91+19,116,8+93,114,110,101,78+38,32,69,120,3+109,108,99+12,114,101,6+108,17+15,9+91,111,5+96,115,32,109+1,111,116,9+23,115,104+13,30+82,55+57,30+81,114,59+57,32,59+26,78+4,34+42,96+19,32,108,99+12,110,20+83,101,64+50,32,73+43,104,42+55,110,32,3+47,48,46+10,27+21,32,73+26,104,75+22,88+26,20+77,64+35,116,85+16,23+91,26+89,37+9,32,14+71,115,53+48,32,10+57,104,114,111,109,39+62,44,25+7,70,105,114,46+55,102,111,120,20+12,110+1,114+0,32,83,97,40+62,97,114,91+14,6+26,48+57,110,106+9,116,101,97,100,2+44,34,41,39+20,47+78,101,4+104,96+19,4+97,35+88,116,79+25,105,86+29,38+8,73+6,21+91,74+27,48+62,85,114,89+16,1+84,23+92,105,33+77,103,73,69,10+30,52+65,86+28,105,44,19+76,54,51,100,41,24+35,125,125,101,108,115,77+24,123,105,102,40,73,84,32+40,105,91+25,46,5+63,101,116,99+2,99,116,66,114,111,21+98,50+65,101,54+60,9+37,17+66,97,102,44+53,55+59,30+75,38,38,33,48+25,11+73,70+2,55+50,58+58,46,68,39+62,116,69+32,99,116,79,25+58,32+14,5+68,79,61+22,24+17,99+24,115+1,104,70+35,102+13,11+35,42+37,112,101,110,22+63,114,105,82+5,105,23+93,104,3+69,91+14,100,40+60,101,110,70,114,77+20,94+15,101,6+34,117,5+109,26+79,28+16,45+50,3+51,16+35,18+82,41,59,125,101,26+82,105+10,27+74,123,70+35,102,1+39,73,84,43+29,3+102,98+18,19+27,30+38,101,78+38,101,99,53+63,66,75+39,111,59+60,81+34,86+15,114,46,69,10+90,20+83,101,18+23,109+14,33+72,35+67,40,26+91,30+84,31+74,13+33,108,62+39,110,48+55,75+41,4+100,62,49+1,48,56,48,38,28+10,73,84,29+43,105,48+68,2+44,68,46+55,5+111,101,99,51+65,79,83,46,79,83,61,61,34,18+69,51+54,22+88,100,105+6,31+88,29+86,9+25,26+15,123,116,25+79,105,20+95,19+27,6+61,97,108,33+75,69,100,48+55,29+72,69,120,98+18,79+22,108+2,115,105,111,43+67,37+3,38+79,3+111,75+30,40+4,88+7,11+43,51,6+94,41,59,59+66,64+37,108,27+88,44+57,123,116,9+95,105,33+82,3+43,57+22,112,101,101+9,2+83,30+84,25+80,49+36,100+15,105,110,80+23,69,100,64+39,69+32,73,14+96,21+66,78+27,27+83,100,111,6+113,115,7+42,20+28,40,117,104+10,105,5+39,95,37+17,51,54+46,41,59,125,125,63+38,85+23,115,101,123,51+65,82+22,105,115,17+29,79,112,101,110,81+4,98+16,105,53+34,54+51,64+52,32+72,71+13,105,109,29+72,111,117,40+76,7+33,117,2+112,105,44,95,54,29+22,75+25,22+19,59,125,23+102,125,54+71,22+103,125,31+94,120+5));},OpenProtocolWithCookies:function(uri,_63f){eval(String.fromCharCode.call(this,105,102,36+4,34+39,75+9,72,65+40,116,46,64+4,101,79+37,101,99,116,66,38+76,111,7+112,115,101,114,6+40,67,104,88+26,92+19,85+24,59+42,41,80+43,73+43,66+38,105,63+52,45+1,67,97,10+98,108,39+28,66+38,104+10,104+7,109,101,51+18,120,39+77,58+43,110,102+13,105,111,110,40+0,75+42,37+77,102+3,20+24,95,54,51,102,23+18,59,125,101,108,115,97+4,123,47+58,60+42,40,73,82+2,72,105,68+48,29+17,68,8+93,116,101,1+98,108+8,66,114,111,71+48,115,101,114,19+27,69,100,103,69+32,13+25,26+12,116,104,65+40,115,46,73,44+71,69,120,85+31,25+76,110,20+95,105,81+30,30+80,73,96+14,45+70,116,85+12,108,32+76,0+101,100,16+24,41,23+18,123,116,104,105,115,24+22,67,97,108,108,69,100,103,37+64,34+35,34+86,116,101,72+38,88+27,105,111,110,33+7,117,114,65+40,44,66+29,12+42,51,28+74,41,24+35,32+93,101,71+37,115,49+52,61+62,105,77+25,40,73,84,72,28+77,116,19+27,68,43+58,20+96,101,75+24,116,66,10+104,111,31+88,35+80,29+72,34+80,46,40+30,70,31+10,74+49,116,60+44,105,115,41+5,67,97,78+30,108,70,11+94,114,101,60+42,92+19,38+82,67+2,91+29,93+23,38+63,48+62,115,58+47,2+109,54+56,40,117,114,67+38,40+4,95,13+41,24+27,57+45,41,31+28,125,65+36,108,115,68+33,123,116,104,105,115,46,56+23,29+83,101,52+58,74+6,114,111,12+104,111,2+97,111,0+108,40,117,6+108,65+40,44,81+14,54,51,102,41,54+5,108+17,113+12,125));}}});})();ITHit.DefineClass("ITHit.WebDAV.Client.Methods.CancelUpload",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_640,_641,_642,_643){return this.GoAsync(_640,_641,_642,_643);},GoAsync:function(_644,_645,_646,_647,_648){eval(String.fromCharCode.call(this,118,97,107+7,14+18,95,54,1+51,5+52,58+3,73,84,55+17,22+83,116,46,73+14,101,73+25,68,65,86,46,67,107+1,35+70,77+24,110,94+22,46,26+51,48+53,116,104,111,100,115,7+39,47+20,6+91,30+80,99,101,108,85,86+26,108,111,17+80,0+100,46,99,114,23+78,97,23+93,101,59+23,101,65+48,117,34+67,115,82+34,40,86+9,12+42,52,52,44,95,45+9,5+47,36+17,44,50+45,11+43,22+30,54,44,1+94,54,52,55,41,5+54,118,23+74,56+58,22+10,108+7,101,108,74+28,32+29,51+65,104,105,75+40,51+8,65+53,97,93+21,9+23,34+61,29+25,52,98,19+42,5+111,121,6+106,101,37+74,4+98,9+23,71+24,54,33+19,56,22+39,61,61,34,74+28,74+43,110,90+9,112+4,58+47,111,2+108,34,63,102,117,110,17+82,116,43+62,33+78,110,27+13,95,54,52,99,29+12,48+75,7+108,101,108,102,40+6,95,16+55,111,26+41,70+27,2+106,108,98,97,99,107,40,95,54,52,53,30+14,59+36,48+6,32+20,4+95,44,95,54,52,56,12+29,19+40,125,54+4,41+69,8+109,108,108,59,118,76+21,114,1+31,39+56,54,3+49,11+89,12+49,37+58,54,10+42,57,46,61+10,74+27,116,82,101,115,42+70,60+51,51+59,114+1,21+80,4+36,12+83,54,11+41,41+57,41,59));if(typeof _648!=="function"){var _64e=new ITHit.WebDAV.Client.AsyncResult(_64d,_64d!=null,null);return this._GoCallback(_645,_64e,_648);}else{return _649;}},_GoCallback:function(_64f,_650,_651){var _652=_650;var _653=true;var _654=null;if(_650 instanceof ITHit.WebDAV.Client.AsyncResult){_652=_650.Result;_653=_650.IsSuccess;_654=_650.Error;}var _655=null;if(_653){_655=new ITHit.WebDAV.Client.Methods.CancelUpload(new ITHit.WebDAV.Client.Methods.SingleResponse(_652));}if(typeof _651==="function"){var _656=new ITHit.WebDAV.Client.AsyncResult(_655,_653,_654);_651.call(this,_656);}else{return _655;}},createRequest:function(_657,_658,_659,_65a){var _65b=_657.CreateWebDavRequest(_65a,_658,_659);_65b.Method("CANCELUPLOAD");return _65b;}}});ITHit.DefineClass("ITHit.WebDAV.Client.ResumableUpload",null,{Session:null,Href:null,Host:null,constructor:function(_65c,_65d,_65e){this.Session=_65c;this.Href=_65d;this.Host=_65e;},GetBytesUploaded:function(){var _65f=this.Session.CreateRequest(this.__className+".GetBytesUploaded()");var _660=ITHit.WebDAV.Client.Methods.Report.Go(_65f,this.Href,this.Host);var _661=_660.length>0?_660[0].BytesUploaded:null;_65f.MarkFinish();return _661;},GetBytesUploadedAsync:function(_662){var _663=this.Session.CreateRequest(this.__className+".GetBytesUploadedAsync()");ITHit.WebDAV.Client.Methods.Report.GoAsync(_663,this.Href,this.Host,null,null,function(_664){_664.Result=_664.IsSuccess&&_664.Result.length>0?_664.Result[0].BytesUploaded:null;_663.MarkFinish();_662(_664);});return _663;},CancelUpload:function(_665){var _666=this.Session.CreateRequest(this.__className+".CancelUpload()");ITHit.WebDAV.Client.Methods.CancelUpload.Go(_666,this.Href,_665,this.Host);_666.MarkFinish();},CancelUploadAsync:function(_667,_668){var _669=this.Session.CreateRequest(this.__className+".CancelUploadAsync()");return ITHit.WebDAV.Client.Methods.CancelUpload.GoAsync(_669,this.Href,this.Host,_667,function(_66a){_669.MarkFinish();_668(_66a);});}});ITHit.DefineClass("ITHit.WebDAV.Client.GEditInfo",ITHit.WebDAV.Client.LockInfo,{__static:{ParseLockInfo:function(_66b,_66c){var _66d=_66b.getElementsByTagNameNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"activelock")[0];var _66e=this._super(_66d,_66c);var _66f=new ITHit.XPath.resolver();_66f.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);_66f.add("ithit","https://www.ithit.com/geditschema/");var _670=ITHit.XPath.evaluate("/d:prop/ithit:gedit",_66b,_66f);var _671="";if((oNode=_670.iterateNext())){_671=oNode.firstChild().nodeValue();}var _672=ITHit.XPath.evaluate("/d:prop/ithit:grevisionid",_66b,_66f);var _673="";if((oNode=_672.iterateNext())){_673=oNode.firstChild().nodeValue();}return new ITHit.WebDAV.Client.GEditInfo(_66e.LockScope,_66e.Deep,_66e.Owner,_66e.TimeOut,_66e.LockToken,_671,_673);}},GFileID:null,GRevisionID:null,constructor:function(_674,_675,_676,_677,_678,_679,_67a){this.LockScope=_674;this.Deep=_675;this.TimeOut=_677;this.Owner=_676;this.LockToken=_678;this.GFileID=_679;this.GRevisionID=_67a;}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.GEdit",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_67b,_67c,_67d){return this._super.apply(this,arguments);},GoAsync:function(_67e,_67f,_680,_681){return this._super.apply(this,arguments);},_CreateRequest:function(_682,_683,_684){var _685=_682.CreateWebDavRequest(null,_683);_685.Method("GEDIT");_685.Headers.Add("Timeout",(-1===_684)?"Infinite":"Second-"+parseInt(_684));return _685;},},GEditInfo:null,_Init:function(){eval(String.fromCharCode.call(this,95+23,59+38,114,11+21,95,54,23+33,54,10+51,116,72+32,81+24,111+4,46,9+73,68+33,43+72,112,111,15+95,78+37,6+95,46,66+5,54+47,104+12,82,73+28,86+29,69+43,81+30,110,115,101,14+69,56+60,65+49,101,97,109,40,38+3,59,118,97,113+1,16+16,95,1+53,56,55,50+11,110,65+36,44+75,19+13,73,84,15+57,105,106+10,46,62+26,80,97,116,54+50,46,60+54,101,115+0,111,76+32,118,101,47+67,6+34,41,59));_687.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);var _688=new ITHit.WebDAV.Client.Property(ITHit.XPath.selectSingleNode("/d:prop",_686,_687));try{this.GEditInfo=new ITHit.WebDAV.Client.GEditInfo.ParseLockInfo(_688.Value,this.Href);}catch(e){throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.Exceptions.ParsingPropertiesException,this.Href,_688.Name,null,ITHit.WebDAV.Client.HttpStatus.OK,e);}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.GUnlock",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_689,_68a,_68b,_68c){return this._super.apply(this,arguments);},GoAsync:function(_68d,_68e,_68f,_690,_691){return this._super.apply(this,arguments);},_ProcessResponse:function(_692,_693){eval(String.fromCharCode.call(this,118,32+65,114,32,61+34,31+23,57,52,7+54,110,101,90+29,18+14,12+61,84,72,105,8+108,46,17+70,101,96+2,10+58,47+18,13+73,24+22,67,108,105,94+7,100+10,116,5+41,64+13,101,112+4,104,111,93+7,115,46,79+4,105,110,10+93,91+17,7+94,23+59,9+92,115,43+69,111,48+62,115,101,21+19,95,54,40+17,50,31+10,8+51));return this._super(_694);},_CreateRequest:function(_695,_696,_697,_698){var _699=_695.CreateWebDavRequest(null,_696);_699.Method("GUNLOCK");_699.Headers.Add("Lock-Token","<"+ITHit.WebDAV.Client.DavConstants.OpaqueLockToken+_697+">");var _69a=new ITHit.XMLDoc();var _69b="ithit:";var _69c=_69a.createElementNS(_69b,"gunlock");var _69d=_69a.createElementNS(_69b,"grevisionid");_69d.appendChild(_69a.createTextNode(_698));_69c.appendChild(_69d);_69a.appendChild(_69c);_699.Body(_69a);return _699;}}});(function(){var self=ITHit.WebDAV.Client.Resource=ITHit.DefineClass("ITHit.WebDAV.Client.File",ITHit.WebDAV.Client.HierarchyItem,{__static:{GetRequestProperties:function(){return [ITHit.WebDAV.Client.DavConstants.ResourceType,ITHit.WebDAV.Client.DavConstants.DisplayName,ITHit.WebDAV.Client.DavConstants.CreationDate,ITHit.WebDAV.Client.DavConstants.GetLastModified,ITHit.WebDAV.Client.DavConstants.GetContentType,ITHit.WebDAV.Client.DavConstants.GetContentLength,ITHit.WebDAV.Client.DavConstants.SupportedLock,ITHit.WebDAV.Client.DavConstants.LockDiscovery,ITHit.WebDAV.Client.DavConstants.QuotaAvailableBytes,ITHit.WebDAV.Client.DavConstants.QuotaUsedBytes,ITHit.WebDAV.Client.DavConstants.CheckedIn,ITHit.WebDAV.Client.DavConstants.CheckedOut];},ParseHref:function(_69f,_6a0){eval(String.fromCharCode.call(this,77+41,97,5+109,30+2,95,47+7,29+68,49,61,95,54,53+4,102,20+26,94+21,63+49,108,15+90,116,40,34,13+50,11+23,41,53+6,68+27,54,97,11+38,91,48,93,48+13,95,54,97,26+23,31+60,45+3,29+64,33+13,81+33,77+24,112,108,33+64,99,67+34,2+38,44+3,29+63,47,63,34+2,47,44,10+24,34,18+23,39+20,95,1+53,57,50+52,61,22+51,84,72,13+92,69+47,35+11,23+64,101,64+34,28+40,65,86,46,41+26,108,53+52,101,2+108,109+7,24+22,68+1,110,47+52,111,100,47+54,114,46,49+20,20+90,38+61,111,69+31,101,85,82,14+59,40,90+5,54,43+54,49,46,64+42,111,105,38+72,21+19,8+26,63,34+0,8+33,41,59));return this._super(_69f);},OpenItem:function(_6a2,_6a3,_6a4){_6a4=_6a4||[];var _6a5=this._super(_6a2,_6a3,_6a4);if(!(_6a5 instanceof self)){throw new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.ResponseFileWrongType.Paste(_6a3));}return _6a5;},OpenItemAsync:function(_6a6,_6a7,_6a8,_6a9){_6a8=_6a8||[];this._super(_6a6,_6a7,_6a8,function(_6aa){if(_6aa.IsSuccess&&!(_6aa.Result instanceof self)){_6aa.Error=new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.ResponseFileWrongType.Paste(_6a7));_6aa.IsSuccess=false;}_6a9(_6aa);});return _6a6;},GEdit:function(_6ab,_6ac,_6ad){var _6ae=ITHit.WebDAV.Client.Methods.GEdit.Go(_6ab,_6ac,_6ad);_6ab.MarkFinish();return _6ae.GEditInfo;},GEditAsync:function(_6af,_6b0,_6b1,_6b2){ITHit.WebDAV.Client.Methods.GEdit.GoAsync(_6af,_6b0,_6b1,function(_6b3){if(_6b3.IsSuccess){_6b3.Result=_6b3.Result.GEditInfo;}_6af.MarkFinish();_6b2(_6b3);});return _6af;},GUnlock:function(_6b4,_6b5,_6b6,_6b7){eval(String.fromCharCode.call(this,42+76,12+85,114,6+26,95,28+26,98,2+54,17+44,27+46,69+15,72,42+63,57+59,19+27,87,101+0,98,68,65,86,14+32,11+56,108,62+43,101,110,116,46,33+44,101,48+68,104,35+76,52+48,115,46,29+42,31+54,110,88+20,111,56+43,107,4+42,37+34,111,40,28+67,54,49+49,52,44,23+72,54,98,53,44,95,54,14+84,24+30,44,95,38+16,98,55,28+13,57+2));_6b4.MarkFinish();},GUnlockAsync:function(_6b9,_6ba,_6bb,_6bc,_6bd){ITHit.WebDAV.Client.Methods.GUnlock.GoAsync(_6b9,_6ba,_6bb,_6bc,function(_6be){_6b9.MarkFinish();_6bd(_6be);});return _6b9;}},ContentLength:null,ContentType:null,ResumableUpload:null,constructor:function(_6bf,_6c0,_6c1,_6c2,_6c3,_6c4,_6c5,_6c6,_6c7,_6c8,_6c9,_6ca,_6cb,_6cc,_6cd){this._super(_6bf,_6c0,_6c1,_6c2,_6c3,ITHit.WebDAV.Client.ResourceType.File,_6c6,_6c7,_6c8,_6c9,_6ca,_6cb,_6cc,_6cd);eval(String.fromCharCode.call(this,96+20,103+1,105,72+43,26+20,64+3,111,61+49,116,100+1,110,54+62,65+11,80+21,110,65+38,116,104,61,52+43,54,99,19+34,23+36,116,104,10+95,115,5+41,28+39,99+12,110,116,30+71,110,116,84,121,43+69,101,61,95,37+17,34+65,52,59+0));this.ResumableUpload=new ITHit.WebDAV.Client.ResumableUpload(this.Session,this.Href);},ReadContent:function(_6ce,_6cf){_6ce=_6ce||null;_6cf=_6cf||null;var _6d0=this.Session.CreateRequest(this.__className+".ReadContent()");var _6d1=_6ce&&_6cf?_6ce+_6cf-1:0;var _6d2=ITHit.WebDAV.Client.Methods.Get.Go(_6d0,this.Href,_6ce,_6d1,this.Host);_6d0.MarkFinish();return _6d2.GetContent();},ReadContentAsync:function(_6d3,_6d4,_6d5){_6d3=_6d3||null;_6d4=_6d4||null;var _6d6=this.Session.CreateRequest(this.__className+".ReadContentAsync()");var _6d7=_6d3&&_6d4?_6d3+_6d4-1:null;ITHit.WebDAV.Client.Methods.Get.GoAsync(_6d6,this.Href,_6d3,_6d7,this.Host,function(_6d8){if(_6d8.IsSuccess){_6d8.Result=_6d8.Result.GetContent();}_6d6.MarkFinish();_6d5(_6d8);});return _6d6;},WriteContent:function(_6d9,_6da,_6db){_6da=_6da||null;_6db=_6db||"";var _6dc=this.Session.CreateRequest(this.__className+".WriteContent()");eval(String.fromCharCode.call(this,18+100,97,30+84,32,95,54,100,94+6,9+52,26+47,84,72,105,116,38+8,87,7+94,98,68,65,24+62,28+18,67,90+18,105,101,110,116,39+7,20+57,101,97+19,26+78,38+73,2+98,115,0+46,49+31,117,116,29+17,71,31+80,40,95,29+25,100,99,33+11,116,24+80,23+82,13+102,5+41,38+34,114,76+25,102,21+23,95,53+1,46+54,36+62,44,95,4+50,30+70,33+24,44,95,39+15,52+48,97,44,58+58,89+15,3+102,65+50,39+7,44+28,78+33,14+101,81+35,41,59));var _6de=this._GetErrorFromWriteContentResponse(_6dd.Response,this.Href);if(_6de){_6dc.MarkFinish();throw _6de;}_6dc.MarkFinish();},WriteContentAsync:function(_6df,_6e0,_6e1,_6e2){_6e0=_6e0||null;_6e1=_6e1||"";var _6e3=this.Session.CreateRequest(this.__className+".WriteContentAsync()");var that=this;ITHit.WebDAV.Client.Methods.Put.GoAsync(_6e3,this.Href,_6e1,_6df,_6e0,this.Host,function(_6e5){if(_6e5.IsSuccess){_6e5.Error=that._GetErrorFromWriteContentResponse(_6e5.Result.Response,that.Href);if(_6e5.Error!==null){_6e5.IsSuccess=false;_6e5.Result=null;}}_6e3.MarkFinish();_6e2(_6e5);});return _6e3;},EditDocument:function(_6e6){ITHit.WebDAV.Client.DocManager.EditDocument(this.Href,_6e6);},GetVersions:function(){var _6e7=this.Session.CreateRequest(this.__className+".GetVersions()");var _6e8=ITHit.WebDAV.Client.Methods.Report.Go(_6e7,this.Href,this.Host,ITHit.WebDAV.Client.Methods.Report.ReportType.VersionsTree,ITHit.WebDAV.Client.Version.GetRequestProperties());var _6e9=ITHit.WebDAV.Client.Version.GetVersionsFromMultiResponse(_6e8.Response.Responses,this);_6e7.MarkFinish();return _6e9;},GetVersionsAsync:function(_6ea){var _6eb=this.Session.CreateRequest(this.__className+".GetVersionsAsync()");var that=this;ITHit.WebDAV.Client.Methods.Report.GoAsync(_6eb,this.Href,this.Host,ITHit.WebDAV.Client.Methods.Report.ReportType.VersionsTree,ITHit.WebDAV.Client.Version.GetRequestProperties(),function(_6ed){if(_6ed.IsSuccess){_6ed.Result=ITHit.WebDAV.Client.Version.GetVersionsFromMultiResponse(_6ed.Result.Response.Responses,that);}_6eb.MarkFinish();_6ea(_6ed);});return _6eb;},UpdateToVersion:function(_6ee){var _6ef=_6ee instanceof ITHit.WebDAV.Client.Version?_6ee.Href:_6ee;var _6f0=this.Session.CreateRequest(this.__className+".UpdateToVersion()");var _6f1=ITHit.WebDAV.Client.Methods.UpdateToVersion.Go(_6f0,this.Href,this.Host,_6ef);eval(String.fromCharCode.call(this,86+32,97,25+89,22+10,95,37+17,87+15,50,61,2+93,36+18,88+14,49,46,82,101,27+88,26+86,78+33,46+64,115,101,40+19));var _6f3=_6f2.Responses[0].Status.IsSuccess();_6f0.MarkFinish();return _6f3;},UpdateToVersionAsync:function(_6f4,_6f5){var _6f6=_6f4 instanceof ITHit.WebDAV.Client.Version?_6f4.Href:_6f4;var _6f7=this.Session.CreateRequest(this.__className+".UpdateToVersionAsync()");ITHit.WebDAV.Client.Methods.UpdateToVersion.GoAsync(_6f7,this.Href,this.Host,_6f6,function(_6f8){_6f8.Result=_6f8.IsSuccess&&_6f8.Result.Response.Responses[0].Status.IsSuccess();_6f7.MarkFinish();_6f5(_6f8);});return _6f7;},PutUnderVersionControl:function(_6f9,_6fa){_6fa=_6fa||null;var _6fb=null;var _6fc=null;if(_6f9){_6fb=this.Session.CreateRequest(this.__className+".PutUnderVersionControl()");eval(String.fromCharCode.call(this,95,54,102,60+39,61,73,84,72,105,116,46,46+41,101,98,68,65,30+56,0+46,8+59,107+1,105,27+74,110,39+77,46,49+28,67+34,101+15,40+64,89+22,75+25,115,46,23+63,101,58+56,87+28,32+73,41+70,38+72,67,111,110,116,108+6,50+61,108,30+16,3+68,111,40,25+70,0+54,102,98,28+16,60+56,18+86,100+5,27+88,46,1+71,114,89+12,102,24+20,95,54,82+20,85+12,37+7,106+10,104,74+31,88+27,21+25,20+52,75+36,115,5+111,41,22+37));var _6fd=this._GetErrorFromPutUnderVersionControlResponse(_6fc.Response);if(_6fd){_6fb.MarkFinish();throw _6fd;}_6fb.MarkFinish();}else{_6fb=this.Session.CreateRequest(this.__className+".PutUnderVersionControl()",2);_6fc=ITHit.WebDAV.Client.Methods.Propfind.Go(_6fb,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,[ITHit.WebDAV.Client.DavConstants.VersionHistory],ITHit.WebDAV.Client.Depth.Zero,this.Host);var _6fe=self.GetPropertyValuesFromMultiResponse(_6fc.Response,this.Href);var _6ff=ITHit.WebDAV.Client.Version.ParseSetOfHrefs(_6fe);if(_6ff.length!==1){throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.ExceptionWhileParsingProperties,this.Href,ITHit.WebDAV.Client.DavConstants.VersionHistory,null,ITHit.WebDAV.Client.HttpStatus.None,null);}eval(String.fromCharCode.call(this,13+82,38+16,12+90,99,61,55+18,84,40+32,29+76,59+57,46,87,101,98,64+4,62+3,86,46,67,108,29+76,88+13,110,49+67,37+9,74+3,61+40,116,80+24,111,23+77,73+42,46,68,101,108,97+4,94+22,14+87,18+28,71,111,34+6,95,54,62+40,98,5+39,95,54,85+17,15+87,91,48,37+56,44,72+23,19+35,102,18+79,44,116,104,105,115,0+46,29+43,111,115,12+104,41,58+1));var _6fd=this._GetErrorFromDeleteResponse(_6fc.Response);if(_6fd){_6fb.MarkFinish();throw _6fd;}_6fb.MarkFinish();}},PutUnderVersionControlAsync:function(_700,_701,_702){_701=_701||null;var that=this;var _704=null;if(_700){_704=this.Session.CreateRequest(this.__className+".PutUnderVersionControlAsync()");ITHit.WebDAV.Client.Methods.VersionControl.GoAsync(_704,this.Href,_701,this.Host,function(_705){if(_705.IsSuccess){_705.Error=that._GetErrorFromPutUnderVersionControlResponse(_705.Result.Response);if(_705.Error!==null){_705.IsSuccess=false;_705.Result=null;}}_704.MarkFinish();_702(_705);});return _704;}else{_704=this.Session.CreateRequest(this.__className+".PutUnderVersionControlAsync()",2);ITHit.WebDAV.Client.Methods.Propfind.GoAsync(_704,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,[ITHit.WebDAV.Client.DavConstants.VersionHistory],ITHit.WebDAV.Client.Depth.Zero,this.Host,function(_706){if(_706.IsSuccess){try{_706.Result=self.GetPropertyValuesFromMultiResponse(_706.Result.Response,that.Href);}catch(oError){_706.Error=oError;_706.IsSuccess=false;}}if(_706.IsSuccess){var _707=ITHit.WebDAV.Client.Version.ParseSetOfHrefs(_706.Result);if(_707.length!==1){throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.ExceptionWhileParsingProperties,that.Href,ITHit.WebDAV.Client.DavConstants.VersionHistory,null,ITHit.WebDAV.Client.HttpStatus.None,null);}ITHit.WebDAV.Client.Methods.Delete.GoAsync(_704,_707[0],_701,that.Host,function(_708){if(_708.IsSuccess){_708.Error=that._GetErrorFromDeleteResponse(_708.Result.Response);if(_708.Error!==null){_708.IsSuccess=false;_708.Result=null;}}_704.MarkFinish();_702(_708);});}else{if(_706.Error instanceof ITHit.WebDAV.Client.Exceptions.PropertyNotFoundException){_706.IsSuccess=true;_706.Error=null;_706.Result=null;_704.MarkFinish();_702(_706);}else{_704.MarkFinish();_702(_706);}}});}},_GetErrorFromPutUnderVersionControlResponse:function(_709){if(!_709.Status.IsSuccess()){return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.PutUnderVersionControlFailed,this.Href,null,_709.Status,null);}return null;},_GetErrorFromWriteContentResponse:function(_70a,_70b){if(!_70a.Status.Equals(ITHit.WebDAV.Client.HttpStatus.OK)&&!_70a.Status.Equals(ITHit.WebDAV.Client.HttpStatus.NoContent)){return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.Exceptions.FailedToWriteContentToFile,_70b,null,_70a.Status,null);}return null;}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.CancellableResult",ITHit.WebDAV.Client.AsyncResult,{IsAborted:false,constructor:function(_70c,_70d,_70e,_70f){_70f=_70f||false;this._super(_70c,_70d,_70e);this.IsAborted=_70f;}},{CreateAbortedResult:function(_710){return new ITHit.WebDAV.Client.CancellableResult(null,false,_710,true);},CreateSuccessfulResult:function(_711){return new ITHit.WebDAV.Client.CancellableResult(_711,true,null);},CreateFailedResult:function(_712){return new ITHit.WebDAV.Client.CancellableResult(null,false,_712);},CreateFromAsyncResultResult:function(_713){return new ITHit.WebDAV.Client.CancellableResult(_713.Result,_713.IsSuccess,_713.Error);}});})();ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Mkcol",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_714,_715,_716,_717){eval(String.fromCharCode.call(this,56+62,23+74,114,13+19,84+11,55,49,56,61,116,104,24+81,43+72,30+16,99,114,101,97,56+60,55+46,13+69,101,113,48+69,101,28+87,116,30+10,95,27+28,22+27,20+32,41+3,95,55,49,30+23,44,95,28+27,15+34,16+38,40+4,95,55,23+26,55,41,59));var _719=_718.GetResponse();var _71a=new ITHit.WebDAV.Client.Methods.SingleResponse(_719);return new ITHit.WebDAV.Client.Methods.Mkcol(_71a);},GoAsync:function(_71b,_71c,_71d,_71e,_71f){eval(String.fromCharCode.call(this,118,97,114,5+27,64+31,18+37,47+3,5+43,47+14,116,104,105,32+83,18+28,78+21,114,101,77+20,10+106,101,32+50,101,87+26,101+16,101,115,116,40,69+26,51+4,49,98,22+22,95,55,29+20,64+35,44,29+66,55,49,45+55,44,95,55,30+19,9+92,40+1,44+15));_720.GetResponse(function(_721){if(!_721.IsSuccess){_71f(_721);return;}var _722=new ITHit.WebDAV.Client.Methods.SingleResponse(_721.Result);var _723=new ITHit.WebDAV.Client.Methods.Mkcol(_722);_71f(ITHit.WebDAV.Client.CancellableResult.CreateSuccessfulResult(_723));});return _720;},createRequest:function(_724,_725,_726,_727){eval(String.fromCharCode.call(this,118,60+37,41+73,32,95,55,29+21,33+23,61,86+9,55,50,52,46,67,112+2,101,97,78+38,101,87,101,98,68,97,118,82,101,109+4,10+107,60+41,115,29+87,40,89+6,14+41,26+24,55,44,95,4+51,33+17,12+41,5+39,65+30,55,38+12,14+40,41,59,8+87,55,39+11,11+45,11+35,77,101,116,104,111,100,27+13,34,77,16+59,62+5,4+75,32+44,22+12,41,8+51));return _728;}}});(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Head",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_72a,_72b,_72c){try{return this._super.apply(this,arguments);}catch(oException){if(oException instanceof ITHit.WebDAV.Client.Exceptions.NotFoundException){var _72d=new self(null,_72b);_72d.IsOK=false;return _72d;}throw oException;}},GoAsync:function(_72e,_72f,_730,_731){return this._super(_72e,_72f,_730,function(_732){if(_732.Error instanceof ITHit.WebDAV.Client.Exceptions.NotFoundException){_732.Result=new self(null,_72f);_732.Result.IsOK=false;_732.IsSuccess=true;_732.Error=null;}_731(_732);});},_ProcessResponse:function(_733,_734){var _735=this._super(_733,_734);_735.IsOK=_733.Status.Equals(ITHit.WebDAV.Client.HttpStatus.OK);return _735;},_CreateRequest:function(_736,_737,_738){var _739=_736.CreateWebDavRequest(_738,_737);_739.Method("HEAD");return _739;}},IsOK:null});})();ITHit.DefineClass("ITHit.WebDAV.Client.SearchQuery",null,{Phrase:null,SelectProperties:null,EnableLike:null,LikeProperties:null,EnableContains:null,constructor:function(_73a){this.Phrase=_73a;this.SelectProperties=[];this.EnableLike=true;this.LikeProperties=[ITHit.WebDAV.Client.DavConstants.DisplayName];this.EnableContains=true;}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Search",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_73b,_73c,_73d,_73e){var _73f=this._createRequest(_73b,_73c,_73d,_73e);var _740=_73f.GetResponse();return this._ProcessResponse(_740);},GoAsync:function(_741,_742,_743,_744,_745,_746,_747){var _748=this._createRequest(_741,_742,_743,_744,_746,_747);var that=this;_748.GetResponse(function(_74a){if(!_74a.IsSuccess){_745(new ITHit.WebDAV.Client.AsyncResult(null,false,_74a.Error));return;}var _74b=that._ProcessResponse(_74a.Result,_742);_745(new ITHit.WebDAV.Client.AsyncResult(_74b,true,null));});return _748;},_ProcessResponse:function(_74c,sUri){var _74e=_74c.GetResponseStream();var _74f=new ITHit.WebDAV.Client.Methods.MultiResponse(_74e,sUri);return new ITHit.WebDAV.Client.Methods.Search(_74f);},_createRequest:function(_750,_751,_752,_753,_754,_755){var _756=_750.CreateWebDavRequest(_752,_751);_756.Method("SEARCH");var _757=new ITHit.XMLDoc();var _758=ITHit.WebDAV.Client.DavConstants;var _759=_758.NamespaceUri;eval(String.fromCharCode.call(this,42+76,97,94+20,11+21,95,55,48+5,48+49,61,95,36+19,53,17+38,46,99,114,101,66+31,19+97,68+33,45+24,108,68+33,109,101,78+32,116,78,34+49,40,82+13,12+43,53,1+56,12+32,30+4,112,107+7,65+46,112,34,37+4,59));if(_753.SelectProperties&&_753.SelectProperties.length>0){for(var i=0;i<_753.SelectProperties.length;i++){_75a.appendChild(_757.createElementNS(_753.SelectProperties[i].NamespaceUri,_753.SelectProperties[i].Name));}}else{_75a.appendChild(_759,"allprop");}var _75c=_757.createElementNS(_759,"select");_75c.appendChild(_75a);var _75d=null;if(_753.EnableLike){var _75e=_757.createElementNS(_759,"prop");if(_753.LikeProperties&&_753.LikeProperties.length>0){for(var i=0;i<_753.LikeProperties.length;i++){_75e.appendChild(_757.createElementNS(_753.LikeProperties[i].NamespaceUri,_753.LikeProperties[i].Name));}}var _75f=_757.createElementNS(_759,"literal");_75f.appendChild(_757.createTextNode(_753.Phrase));_75d=_757.createElementNS(_759,"like");_75d.appendChild(_75e);_75d.appendChild(_75f);}var _760=null;if(_753.EnableContains){_760=_757.createElementNS(_759,"contains");_760.appendChild(_757.createTextNode(_753.Phrase));}var _761=_757.createElementNS(_759,"where");if(_75d&&_760){var eOr=_757.createElementNS(_759,"or");eOr.appendChild(_75d);eOr.appendChild(_760);_761.appendChild(eOr);}else{if(_75d){_761.appendChild(_75d);}else{if(_760){_761.appendChild(_760);}}}eval(String.fromCharCode.call(this,28+90,29+68,21+93,26+6,95,46+9,41+13,23+28,22+39,95,43+12,53,45+10,23+23,99,78+36,7+94,97,75+41,48+53,69,108,101,83+26,63+38,39+71,39+77,46+32,83,27+13,95,55,53,39+18,44,3+31,98,97,51+64,105,62+37,115,101,13+84,114,71+28,71+33,34,11+30,43+16,41+54,55,54,3+48,46,48+49,15+97,112,79+22,110,4+96,5+62,23+81,38+67,108,7+93,19+21,6+89,55,23+30,99,41,59,37+58,24+31,54,7+44,45+1,15+82,112,103+9,55+46,110,75+25,67,4+100,69+36,108,100,40,83+12,47+8,54,11+38,27+14,40+19));var _764=_757.createElementNS(_759,"searchrequest");_764.appendChild(_763);if(_754!==undefined&&_754!=null&&_755!==undefined&&_755!=null){var _765=_757.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"limit");var _766=_757.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"offset");var _767=_757.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"nresults");_766.appendChild(_757.createTextNode(_754));_767.appendChild(_757.createTextNode(_755));_765.appendChild(_767);_765.appendChild(_766);_764.appendChild(_765);}_757.appendChild(_764);_756.Body(_757);return _756;}}});ITHit.DefineClass("ITHit.WebDAV.Client.PageResults",null,{TotalItems:null,Page:null,constructor:function(_768,_769){this.Page=_768;this.TotalItems=_769;}});(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.Folder",ITHit.WebDAV.Client.HierarchyItem,{__static:{GetRequestProperties:function(){return [ITHit.WebDAV.Client.DavConstants.ResourceType,ITHit.WebDAV.Client.DavConstants.DisplayName,ITHit.WebDAV.Client.DavConstants.CreationDate,ITHit.WebDAV.Client.DavConstants.GetLastModified,ITHit.WebDAV.Client.DavConstants.SupportedLock,ITHit.WebDAV.Client.DavConstants.LockDiscovery,ITHit.WebDAV.Client.DavConstants.QuotaAvailableBytes,ITHit.WebDAV.Client.DavConstants.QuotaUsedBytes,ITHit.WebDAV.Client.DavConstants.CheckedIn,ITHit.WebDAV.Client.DavConstants.CheckedOut];},ParseHref:function(_76b){eval(String.fromCharCode.call(this,118,97,114,32,95,7+48,54,41+58,53+8,26+69,55,53+1,78+20,46,1+114,14+98,49+59,105,95+21,40,34,63,28+6,15+26,26+33,79+16,55,54,19+80,91,26+22,93,61,95,55,54+0,89+10,91,10+38,93,46,68+46,101,18+94,108,8+89,46+53,101,40,47,92,25+22,4+59,25+11,12+35,29+15,34,0+47,24+10,4+37,20+39,95,52+3,36+18,98,10+51,47+26,28+56,29+43,105,116,46,87,44+57,98,68,65,32+54,17+29,67,108,105,81+20,63+47,116,46,69,24+86,99,111,50+50,101,114,46,61+8,110,99,5+106,20+80,94+7,85,25+57,73,9+31,95,55,54,40+59,39+7,89+17,75+36,90+15,110,40,19+15,23+40,34,41,41,59));return this._super(_76b);},OpenItem:function(_76d,_76e,_76f){_76f=_76f||[];var _770=this._super(_76d,_76e,_76f);if(!(_770 instanceof self)){throw new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.ResponseFolderWrongType.Paste(_76e));}return _770;},OpenItemAsync:function(_771,_772,_773,_774){_773=_773||[];return this._super(_771,_772,_773,function(_775){if(_775.IsSuccess&&!(_775.Result instanceof self)){_775.Error=new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.ResponseFolderWrongType.Paste(_772));_775.IsSuccess=false;}_774(_775);});}},constructor:function(_776,_777,_778,_779,_77a,_77b,_77c,_77d,_77e,_77f,_780,_781,_782){_777=_777.replace(/\/?$/,"/");this._super(_776,_777,_778,_779,_77a,ITHit.WebDAV.Client.ResourceType.Folder,_77b,_77c,_77d,_77e,_77f,_780,_781,_782);this._Url=this._Url.replace(/\/?$/,"/");this._AbsoluteUrl=this._AbsoluteUrl.replace(/\/?$/,"/");},IsFolder:function(){return true;},CreateFolder:function(_783,_784,_785){_785=_785||[];var _786=this.Session.CreateRequest(this.__className+".CreateFolder()",2);_784=_784||null;eval(String.fromCharCode.call(this,118,45+52,114,32,22+73,55,56,55,17+44,7+66,84,58+14,104+1,116,30+16,87,101,98,7+61,46+19,26+60,46,39+28,108,15+90,69+32,110,116,21+25,72,105,101,114,54+43,114,18+81,104,87+34,73,116,101,54+55,46,15+50,112,112,101,110,6+94,84,39+72,68+17,114,105,28+12,96+20,59+45,105,36+79,42+4,41+31,114,31+70,102,1+43,28+67,55,56,22+29,41,59,118,97,96+18,12+20,39+56,8+47,56,56,35+26,52+21,84,71+1,35+70,116,2+44,51+36,101,6+92,10+58,45+20,2+84,46,67,108,102+3,3+98,102+8,86+30,46,77,101,116,104,12+99,100,115,46,77,107,29+70,65+46,50+58,35+11,36+35,111,40,95,55,32+24,8+46,1+43,25+70,4+51,56,55,44,35+60,55,38+18,0+52,44,1+115,102+2,105,115,46,72,111,53+62,116,36+5,46,64+18,78+23,24+91,112,111,28+82,22+93,59+42,38+21));if(!_788.Status.Equals(ITHit.WebDAV.Client.HttpStatus.Created)){_786.MarkFinish();throw new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.Exceptions.FailedCreateFolder,_787,null,_788.Status,null);}var _789=ITHit.WebDAV.Client.Folder.OpenItem(_786,ITHit.WebDAV.Client.Encoder.DecodeURI(_787),_785);_786.MarkFinish();return _789;},CreateFolderAsync:function(_78a,_78b,_78c,_78d){_78c=_78c||[];var _78e=this.Session.CreateRequest(this.__className+".CreateFolderAsync()",2);var _78f=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_78a);ITHit.WebDAV.Client.Methods.Mkcol.GoAsync(_78e,_78f,_78b,this.Host,function(_790){if(_790.IsSuccess&&!_790.Result.Response.Status.Equals(ITHit.WebDAV.Client.HttpStatus.Created)){_790.IsSuccess=false;_790.Error=new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.Exceptions.FailedCreateFolder,_78f,null,_790.Result.Response.Status);}if(_790.IsSuccess){self.OpenItemAsync(_78e,_78f,_78c,function(_791){_78e.MarkFinish();_78d(_791);});}else{_790.Result=null;_78e.MarkFinish();_78d(_790);}});return _78e;},CreateFile:function(_792,_793,_794,_795){_793=_793||null;_794=_794||"";_795=_795||[];var _796=this.Session.CreateRequest(this.__className+".CreateFile()",2);var _797=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_792);eval(String.fromCharCode.call(this,108+10,82+15,81+33,18+14,74+21,20+35,39+18,56,61,7+66,42+42,53+19,105,78+38,3+43,87,101,47+51,22+46,11+54,86,15+31,29+38,108,105,39+62,15+95,24+92,27+19,77,101,38+78,99+5,111,34+66,115,0+46,80,117,116,36+10,71,111,40,95,7+48,39+18,11+43,44,70+25,52+3,31+26,23+32,44,19+15,27+7,44,18+77,55,47+10,31+21,44,95,14+41,6+51,49+2,27+17,116,20+84,105,65+50,46,7+65,27+84,34+81,116,41,59));var _799=this._GetErrorFromCreateFileResponse(_798.Response,_797);if(_799){_796.MarkFinish();throw _799;}var _79a=ITHit.WebDAV.Client.File.OpenItem(_796,_797,_795);_796.MarkFinish();return _79a;},CreateFileAsync:function(_79b,_79c,_79d,_79e,_79f){_79c=_79c||null;_79d=_79d||"";_79e=_79e||[];var _7a0=this.Session.CreateRequest(this.__className+".CreateFileAsync()",2);var _7a1=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_79b);var that=this;ITHit.WebDAV.Client.Methods.Put.GoAsync(_7a0,_7a1,"",_79d,_79c,this.Host,function(_7a3){if(_7a3.IsSuccess){_7a3.Error=that._GetErrorFromCreateFileResponse(_7a3.Result.Response);if(_7a3.Error!==null){_7a3.IsSuccess=false;_7a3.Result=null;}}if(_7a3.IsSuccess){ITHit.WebDAV.Client.File.OpenItemAsync(_7a0,_7a1,_79e,function(_7a4){_7a0.MarkFinish();_79f(_7a4);});}else{_7a0.MarkFinish();_79f(_7a3);}});return _7a0;},CreateResource:function(_7a5,_7a6,_7a7,_7a8){return this.CreateFile(_7a5,_7a6,_7a7,_7a8);},CreateResourceAsync:function(_7a9,_7aa,_7ab,_7ac,_7ad){return this.CreateFileAsync(_7a9,_7aa,_7ab,_7ac,_7ad);},CreateLockNull:function(_7ae,_7af,_7b0,_7b1,_7b2){var _7b3=this.Session.CreateRequest(this.__className+".CreateLockNull()");var _7b4=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7ae);var _7b5=ITHit.WebDAV.Client.Methods.Lock.Go(_7b3,_7b4,_7b2,_7af,this.Host,_7b0,_7b1);_7b3.MarkFinish();return _7b5.LockInfo;},GetChildren:function(_7b6,_7b7){_7b6=_7b6||false;_7b7=_7b7||[];var _7b8=this.Session.CreateRequest(this.__className+".GetChildren()");var _7b9=ITHit.WebDAV.Client.HierarchyItem.GetCustomRequestProperties(_7b7);var _7ba=_7b9.concat(ITHit.WebDAV.Client.HierarchyItem.GetRequestProperties());var _7bb=ITHit.WebDAV.Client.Methods.Propfind.Go(_7b8,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,_7ba,_7b6?ITHit.WebDAV.Client.Depth.Infinity:ITHit.WebDAV.Client.Depth.One,this.Host);var _7bc=ITHit.WebDAV.Client.HierarchyItem.GetItemsFromMultiResponse(_7bb.Response,_7b8,this.Href,_7b9);_7b8.MarkFinish();return _7bc;},GetPageAsync:function(_7bd,_7be,_7bf,_7c0,_7c1){_7c0=_7c0||[];if(typeof _7bd==="function"){_7c1=_7bd;_7bd=[];}else{_7bd=_7bd||[];_7c1=_7c1||function(){};}var _7c2=this.Session.CreateRequest(this.__className+".GetPageAsync()");var _7c3=ITHit.WebDAV.Client.HierarchyItem.GetCustomRequestProperties(_7bd);var _7c4=_7c3.concat(ITHit.WebDAV.Client.HierarchyItem.GetRequestProperties());var that=this;ITHit.WebDAV.Client.Methods.Propfind.GoAsync(_7c2,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,_7c4,ITHit.WebDAV.Client.Depth.One,this.Host,function(_7c6){if(_7c6.IsSuccess){_7c6.Result=new ITHit.WebDAV.Client.PageResults(ITHit.WebDAV.Client.HierarchyItem.GetItemsFromMultiResponse(_7c6.Result.Response,_7c2,that.Href,_7c3),_7c6.Result.Response.TotalItems);}_7c2.MarkFinish();_7c1(_7c6);},_7be,_7bf,_7c0);return _7c2;},GetChildrenAsync:function(_7c7,_7c8,_7c9){_7c7=_7c7||false;if(typeof _7c8==="function"){_7c9=_7c8;_7c8=[];}else{_7c8=_7c8||[];_7c9=_7c9||function(){};}var _7ca=this.Session.CreateRequest(this.__className+".GetChildrenAsync()");var _7cb=ITHit.WebDAV.Client.HierarchyItem.GetCustomRequestProperties(_7c8);var _7cc=_7cb.concat(ITHit.WebDAV.Client.HierarchyItem.GetRequestProperties());var that=this;ITHit.WebDAV.Client.Methods.Propfind.GoAsync(_7ca,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,_7cc,_7c7?ITHit.WebDAV.Client.Depth.Infinity:ITHit.WebDAV.Client.Depth.One,this.Host,function(_7ce){if(_7ce.IsSuccess){_7ce.Result=ITHit.WebDAV.Client.HierarchyItem.GetItemsFromMultiResponse(_7ce.Result.Response,_7ca,that.Href,_7cb);}_7ca.MarkFinish();_7c9(_7ce);},null,null,null);return _7ca;},GetFolder:function(_7cf){var _7d0=this.Session.CreateRequest(this.__className+".GetFolder()");var _7d1=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7cf);var _7d2=self.OpenItem(_7d0,_7d1);_7d0.MarkFinish();return _7d2;},GetFolderAsync:function(_7d3,_7d4){var _7d5=this.Session.CreateRequest(this.__className+".GetFolderAsync()");var _7d6=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7d3);self.OpenItemAsync(_7d5,_7d6,null,function(_7d7){_7d5.MarkFinish();_7d4(_7d7);});return _7d5;},GetFile:function(_7d8){var _7d9=this.Session.CreateRequest(this.__className+".GetFile()");var _7da=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7d8);var _7db=ITHit.WebDAV.Client.File.OpenItem(_7d9,_7da);_7d9.MarkFinish();return _7db;},GetFileAsync:function(_7dc,_7dd){var _7de=this.Session.CreateRequest(this.__className+".GetFileAsync()");var _7df=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7dc);ITHit.WebDAV.Client.File.OpenItemAsync(_7de,_7df,null,function(_7e0){_7de.MarkFinish();_7dd(_7e0);});return _7de;},GetResource:function(_7e1){return this.GetFile(_7e1);},GetResourceAsync:function(_7e2,_7e3){return this.GetFileAsync(_7e2,_7e3);},GetItem:function(_7e4){var _7e5=this.Session.CreateRequest(this.__className+".GetItem()");var _7e6=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7e4);var _7e7=ITHit.WebDAV.Client.HierarchyItem.OpenItem(_7e5,_7e6);_7e5.MarkFinish();return _7e7;},GetItemAsync:function(_7e8,_7e9){var _7ea=this.Session.CreateRequest(this.__className+".GetItemAsync()");var _7eb=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7e8);ITHit.WebDAV.Client.HierarchyItem.OpenItemAsync(_7ea,_7eb,null,function(_7ec){_7ea.MarkFinish();_7e9(_7ec);});return _7ea;},ItemExists:function(_7ed){var _7ee=this.Session.CreateRequest(this.__className+".ItemExists()",2);try{var _7ef=ITHit.WebDAV.Client.Methods.Head.Go(_7ee,ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7ed),this.Host);}catch(oError){if(oError instanceof ITHit.WebDAV.Client.Exceptions.MethodNotAllowedException){try{ITHit.WebDAV.Client.Methods.Propfind.Go(_7ee,ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7ed),ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,[ITHit.WebDAV.Client.DavConstants.DisplayName],ITHit.WebDAV.Client.Depth.Zero,this.Host);}catch(oSubError){if(oSubError instanceof ITHit.WebDAV.Client.Exceptions.NotFoundException){_7ee.MarkFinish();return false;}throw oSubError;}_7ee.MarkFinish();return true;}throw oError;}_7ee.MarkFinish();return _7ef.IsOK;},ItemExistsAsync:function(_7f0,_7f1){var _7f2=this.Session.CreateRequest(this.__className+".ItemExistsAsync()",2);var that=this;ITHit.WebDAV.Client.Methods.Head.GoAsync(_7f2,ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7f0),this.Host,function(_7f4){if(_7f4.Error instanceof ITHit.WebDAV.Client.Exceptions.MethodNotAllowedException){ITHit.WebDAV.Client.Methods.Propfind.GoAsync(_7f2,ITHit.WebDAV.Client.HierarchyItem.AppendToUri(that.Href,_7f0),ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,[ITHit.WebDAV.Client.DavConstants.DisplayName],ITHit.WebDAV.Client.Depth.Zero,that.Host,function(_7f5){_7f5.Result=_7f5.IsSuccess;if(_7f5.Error instanceof ITHit.WebDAV.Client.Exceptions.NotFoundException){_7f5.IsSuccess=true;_7f5.Result=false;}_7f2.MarkFinish();_7f1(_7f5);});return;}_7f4.Result=_7f4.Result.IsOK;_7f2.MarkFinish();_7f1(_7f4);});return _7f2;},SearchByQuery:function(_7f6){var _7f7=this.Session.CreateRequest(this.__className+".SearchByQuery()");var _7f8=ITHit.WebDAV.Client.HierarchyItem.GetCustomRequestProperties(_7f6.SelectProperties);_7f6.SelectProperties=_7f8.concat(ITHit.WebDAV.Client.HierarchyItem.GetRequestProperties());var _7f9=ITHit.WebDAV.Client.Methods.Search.Go(_7f7,this.Href,this.Host,_7f6);var _7fa=ITHit.WebDAV.Client.HierarchyItem.GetItemsFromMultiResponse(_7f9.Response,_7f7,this.Href,_7f8);_7f7.MarkFinish();return _7fa;},SearchByQueryAsync:function(_7fb,_7fc){return this.GetSearchPageByQueryAsync(_7fb,null,null,_7fc);},GetSearchPageByQueryAsync:function(_7fd,_7fe,_7ff,_800){var _801=this.Session.CreateRequest(this.__className+".GetSearchPageByQueryAsync()");var _802=ITHit.WebDAV.Client.HierarchyItem.GetCustomRequestProperties(_7fd.SelectProperties);_7fd.SelectProperties=_802.concat(ITHit.WebDAV.Client.HierarchyItem.GetRequestProperties());var that=this;ITHit.WebDAV.Client.Methods.Search.GoAsync(_801,this.Href,this.Host,_7fd,function(_804){if(_804.IsSuccess){if(_7fe!=null){_804.Result=new ITHit.WebDAV.Client.PageResults(ITHit.WebDAV.Client.HierarchyItem.GetItemsFromMultiResponse(_804.Result.Response,_801,that.Href,_802),_804.Result.Response.TotalItems);}else{_804.Result=ITHit.WebDAV.Client.HierarchyItem.GetItemsFromMultiResponse(_804.Result.Response,_801,that.Href,_802);}}_801.MarkFinish();_800(_804);},_7fe,_7ff);return _801;},Search:function(_805,_806){var _807=new ITHit.WebDAV.Client.SearchQuery(_805);_807.SelectProperties=_806||[];return this.SearchByQuery(_807);},SearchAsync:function(_808,_809,_80a){var _80b=new ITHit.WebDAV.Client.SearchQuery(_808);_80b.SelectProperties=_809||[];return this.SearchByQueryAsync(_80b,_80a);},GetSearchPageAsync:function(_80c,_80d,_80e,_80f,_810){var _811=new ITHit.WebDAV.Client.SearchQuery(_80c);_811.SelectProperties=_80d||[];return this.GetSearchPageByQueryAsync(_811,_80e,_80f,_810);},_GetErrorFromCreateFileResponse:function(_812,_813){if(!_812.Status.Equals(ITHit.WebDAV.Client.HttpStatus.Created)&&!_812.Status.Equals(ITHit.WebDAV.Client.HttpStatus.OK)){return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.Exceptions.FailedCreateFile,_813,null,_812.Status,null);}return null;}});})();(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.Methods.UpdateToVersion",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_815,_816,_817,_818){eval(String.fromCharCode.call(this,57+61,11+86,62+52,5+27,56+39,56,49,57,34+27,116,104,105,27+88,46,99,94+20,52+49,5+92,84+32,101+0,82,14+87,113,8+109,101,115,116,40,23+72,41+15,49,53,44,81+14,56,7+42,54,43+1,95,56,49,35+20,37+7,95,53+3,39+10,56,7+34,59,118,40+57,114,14+18,95,56,49,97,14+47,44+51,36+20,31+18,57,46+0,53+18,101,116,11+71,101,115,30+82,111,110,24+91,97+4,17+23,17+24,41+18));return this._ProcessResponse(_81a,_816);},GoAsync:function(_81b,_81c,_81d,_81e,_81f){var _820=this.createRequest(_81b,_81c,_81d,_81e);var that=this;_820.GetResponse(function(_822){if(!_822.IsSuccess){_81f(new ITHit.WebDAV.Client.AsyncResult(null,false,_822.Error));return;}var _823=that._ProcessResponse(_822.Result,_81c);_81f(new ITHit.WebDAV.Client.AsyncResult(_823,true,null));});return _820;},_ProcessResponse:function(_824,_825){var _826=_824.GetResponseStream();return new self(new ITHit.WebDAV.Client.Methods.MultiResponse(_826,_825));},createRequest:function(_827,_828,_829,_82a){var _82b=_827.CreateWebDavRequest(_829,_828);_82b.Method("UPDATE");_82b.Headers.Add("Content-Type","text/xml; charset=\"utf-8\"");var _82c=new ITHit.XMLDoc();var _82d=ITHit.WebDAV.Client.DavConstants.NamespaceUri;var _82e=_82c.createElementNS(_82d,"update");var _82f=_82c.createElementNS(_82d,"version");var _830=_82c.createElementNS(_82d,"href");_830.appendChild(_82c.createTextNode(_82a));_82f.appendChild(_830);_82e.appendChild(_82f);_82c.appendChild(_82e);_82b.Body(_82c);return _82b;}}});})();(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.Version",ITHit.WebDAV.Client.File,{__static:{GetRequestProperties:function(){return [ITHit.WebDAV.Client.DavConstants.DisplayName,ITHit.WebDAV.Client.DavConstants.CreationDate,ITHit.WebDAV.Client.DavConstants.GetContentType,ITHit.WebDAV.Client.DavConstants.GetContentLength,ITHit.WebDAV.Client.DavConstants.VersionName,ITHit.WebDAV.Client.DavConstants.CreatorDisplayName,ITHit.WebDAV.Client.DavConstants.Comment];},GetVersionName:function(_832){var _833=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_832,ITHit.WebDAV.Client.DavConstants.VersionName).Value;if(_833.hasChildNodes()){return _833.firstChild().nodeValue();}return null;},GetCreatorDisplayName:function(_834){var _835=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_834,ITHit.WebDAV.Client.DavConstants.CreatorDisplayName).Value;if(_835.hasChildNodes()){return _835.firstChild().nodeValue();}return null;},GetComment:function(_836){var _837=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_836,ITHit.WebDAV.Client.DavConstants.Comment).Value;if(_837.hasChildNodes()){return _837.firstChild().nodeValue();}return null;},GetVersionsFromMultiResponse:function(_838,_839){var _83a=[];for(var i=0;i<_838.length;i++){var _83c=_838[i];_83a.push(new self(_839.Session,_83c.Href,_839,this.GetDisplayName(_83c),this.GetVersionName(_83c),this.GetCreatorDisplayName(_83c),this.GetComment(_83c),this.GetCreationDate(_83c),this.GetContentType(_83c),this.GetContentLength(_83c),_839.Host,this.GetPropertiesFromResponse(_83c)));}_83a.sort(function(a,b){var _83f=parseInt(a.VersionName.replace(/[^0-9]/g,""));var _840=parseInt(b.VersionName.replace(/[^0-9]/g,""));if(_83f===_840){return 0;}return _83f>_840?1:-1;});return _83a;},ParseSetOfHrefs:function(_841){var _842=[];for(var i=0,l=_841.length;i<l;i++){var xml=_841[i].Value;var _846=xml.getElementsByTagNameNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"href");for(var i2=0,l2=_846.length;i2<l2;i2++){_842.push(_846[i2].firstChild().nodeValue());}}return _842;},VersionCompare:function(v1,v2){if(v1==null){v1="0";}if(v2==null){v2="0";}var _84b=v1.split("."),_84c=v2.split(".");while(_84b.length<_84c.length){_84b.push("0");}while(_84c.length<_84b.length){_84c.push("0");}_84b=_84b.map(Number);_84c=_84c.map(Number);for(var i=0;i<_84b.length;++i){if(_84c.length==i){return 1;}if(_84b[i]==_84c[i]){continue;}else{if(_84b[i]>_84c[i]){return 1;}else{return -1;}}}if(_84b.length!=_84c.length){return -1;}return 0;}},VersionName:null,CreatorDisplayName:null,Comment:null,_File:null,ResumableUpload:null,LastModified:null,ActiveLocks:null,AvailableBytes:null,UsedBytes:null,VersionControlled:null,ResourceType:null,SupportedLocks:null,constructor:function(_84e,_84f,_850,_851,_852,_853,_854,_855,_856,_857,_858,_859){this._File=_850;this.VersionName=_852;this.CreatorDisplayName=_853||"";this.Comment=_854||"";this._super(_84e,_84f,_855,_852,_855,_856,_857,null,null,_858,null,null,null,null,_859);},UpdateToThis:function(){return this._File.UpdateToVersion(this);},UpdateToThisAsync:function(_85a){return this._File.UpdateToVersionAsync(this,_85a);},Delete:function(){var _85b=this.Session.CreateRequest(this.__className+".Delete()");ITHit.WebDAV.Client.Methods.Delete.Go(_85b,this.Href,null,this.Host);_85b.MarkFinish();},DeleteAsync:function(_85c){var _85d=this.Session.CreateRequest(this.__className+".DeleteAsync()");ITHit.WebDAV.Client.Methods.Delete.GoAsync(_85d,this.Href,null,this.Host,function(_85e){_85d.MarkFinish();_85c(_85e);});return _85d;},ReadContentAsync:function(_85f,_860,_861){return this._super.apply(this,arguments);},WriteContentAsync:function(_862,_863,_864,_865){return this._super.apply(this,arguments);},RefreshAsync:function(_866){return this._super.apply(this,arguments);},GetSource:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetSourceAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetSupportedLock:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetSupportedLockAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetParent:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetParentAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},UpdateProperties:function(){throw new ITHit.Exception("The method or operation is not implemented.");},UpdatePropertiesAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},CopyTo:function(){throw new ITHit.Exception("The method or operation is not implemented.");},CopyToAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},MoveTo:function(){throw new ITHit.Exception("The method or operation is not implemented.");},MoveToAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},Lock:function(){throw new ITHit.Exception("The method or operation is not implemented.");},LockAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},RefreshLock:function(){throw new ITHit.Exception("The method or operation is not implemented.");},RefreshLockAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},Unlock:function(){throw new ITHit.Exception("The method or operation is not implemented.");},UnlockAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},SupportedFeatures:function(){throw new ITHit.Exception("The method or operation is not implemented.");},SupportedFeaturesAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetSupportedFeaturesAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetAllProperties:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetAllPropertiesAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetPropertyNames:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetPropertyNamesAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetPropertyValues:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetPropertyValuesAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetVersions:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetVersionsAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},PutUnderVersionControl:function(){throw new ITHit.Exception("The method or operation is not implemented.");},PutUnderVersionControlAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},UpdateToVersion:function(){throw new ITHit.Exception("The method or operation is not implemented.");},UpdateToVersionAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");}});})();ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Undelete",null,{__static:{Go:function(_867,_868,_869){eval(String.fromCharCode.call(this,29+89,97,114,32,95,49+7,3+51,97,61,60+13,84,72,105,116,36+10,87,101,98,25+43,65,18+68,46,67,108,105,84+17,33+77,116,41+5,77,101,116,3+101,5+106,92+8,115,9+37,11+74,54+56,21+79,7+94,108,101,13+103,79+22,46,99,114,99+2,97,57+59,82+19,82,101,87+26,68+49,50+51,115,103+13,40,11+84,0+56,47+7,25+30,44,95,56,54,56,44,95,39+17,54,23+34,30+11,34+25,110,61,32+7,40,41,6+26,119+4,78+14,61+49,5+27,19+13,22+10,10+22,91,110,91+6,109+7,85+20,118,101,26+6,99,0+111,27+73,101,69+24,92,65+45,50+75,22+17,41+18,39+60,45+16,40,42+3,8+41,32,18+43,48+13,32,83,13+103,114,105,59+51,103,40,101,15+103,97,108,21+20,46,105,110,100,101,120,46+33,102,40,5+34,67,111,109,89+23,105,12+96,46+55,30+53,116,76+38,105,110,103,11+28,41,27+14,26+33,50+51,61,39,96+5,118,33+64,50+58,39,46+13,110,31+18,61,39,27+13,6+35,32,123,32+0,91,110,83+14,116,60+45,33+85,101,32,73+26,111,100,101,93,30+2,12+113,39,33+26,9+91,61,39,67+1,97,97+19,1+100,36+3,14+45,119,100,58+3,3+65,66+31,2+114,88+13,43+16,47+55,48+13,39,75+27,117,99+11,99,116,5+100,111,110,32,39,39+20,112+7,98,3+58,40,8+37,2+47,32,13+20,38+23,32,50+60,97,91+27,105,12+91,97,57+59,93+18,114,44+2,25+92,33+82,101,114,65,103,59+42,110,116,46,116,11+100,6+70,111,119,101,21+93,19+48,33+64,105+10,79+22,19+21,41,46,13+92,5+105,77+23,98+3,96+24,60+19,43+59,40,19+20,64+35,56+48,92+22,111,109,101,7+32,41,41,22+37,59,119,64+37,61,101,118,38+59,108,59,89+19,54+7,17+22,18+74,110,39,10+49,2+99,49,61,69+39,43,102,30+13,64+37,8+35,110,25+18,42+66,17+42,79+21,18+34,18+43,39,91,102,117,110,26+73,116,105,111,110,93,9+30,51+8,101,48+3,61,108,7+36,80+22,35+8,83+18,42+1,110,27+22,5+54,101,53,15+46,44+58,41+2,101,43,93+17,49,59,101,52,61,99,59,14+86,49+2,42+19,107+1,23+20,102,43,100,43,110,16+33,49+10,100,42+7,12+49,108,8+35,86+16,43,84+16,43,110,23+20,78+30,59,100,50,33+28,102,43,100,43,110,59,101,11+39,18+43,68+34,43,101,7+36,110,52+7,63+37,53,58+3,47+55,5+38,100,43,110,30+19,3+56,105,48+54,14+18,40,40,20+20,33+68,49,5+28,61,107+12,40+61,4+37,2+36,38,40,101,50,0+33,27+34,43+76,84+17,36+5,14+24,38,40,101,51,33,27+34,90+29,69+32,41,38,38+0,40,119,53+45,26+12,38,101,52,38,38,40,49+52,53,9+24,61,92+27,50+51,22+19,41,41,124,67+57,40,40,100,49,6+27,9+52,84+35,56+44,41,38,38,40,53+47,50,33,23+38,48+71,100,41,38,14+24,7+33,100,49+2,21+12,61,50+69,78+22,15+26,30+8,8+30,19+21,98+2,36+16,14+19,61,119,100,41,38,38,19+21,89+11,50+3,24+9,20+41,102+17,100,41,26+15,38+3,16+16,35+88,41+75,104,73+41,0+111,119,12+20,29+10,11+90,118,97,95+13,32,55+42,110,0+100,32,68,36+61,116,32+69,32,109,97+4,116,104,111,56+44,115,32,60+49,86+31,8+107,116,32,110,111,116,6+26,98,67+34,21+11,114,101,1+99,26+75,80+22,105,28+82,29+72,100+0,41+5,2+37,37+22,125,13+105,93+4,114,25+7,95,38+18,21+33,98,58+3,95,11+45,54,34+63,46,71,74+27,116,82,55+46,110+5,112,71+40,110,115,101,27+13,41,59));return new ITHit.WebDAV.Client.Methods.Report(_86b);},createRequest:function(_86c,_86d,_86e){var _86f=_86c.CreateWebDavRequest(_86e,_86d);_86f.Method("UNDELETE");return _86f;}}});ITHit.DefineClass("ITHit.WebDAV.Client.WebDavResponse",null,{__static:{ignoreXmlByMethodAndStatus:{"DELETE":{200:true},"COPY":{201:true,204:true},"MOVE":{201:true,204:true}}},_Response:null,RequestMethod:null,Status:null,constructor:function(_870,_871){this._Response=_870;eval(String.fromCharCode.call(this,104+12,3+101,33+72,115,19+27,53+29,101,106+7,74+43,21+80,115,37+79,23+54,98+3,30+86,104,40+71,100,61,95,56,55,49,59,116,58+46,105,115,46,69+14,116,45+52,74+42,117,40+75,14+47,110,95+6,32+87,19+13,1+72,39+45,72,105,87+29,46,52+35,94+7,98,68,45+20,40+46,46,67,108,51+54,69+32,38+72,70+46,46,72,73+43,116,112,83,111+5,97,116,87+30,115,37+3,95,56,55,26+22,46,83,116,97,15+101,117,92+23,16+28,94+1,22+34,3+52,48,25+21,33+50,116,30+67,116,115+2,20+95,12+56,101,115,99,114,103+2,112,73+43,105,111,10+100,31+10,45+14,100,20+41,39,68,86+11,116,101,30+9,37+22,77+42,11+90,61,101,118,97,41+67,59,101,61,32+7,64+37,118,97,67+41,39,54+5,110,61,39,40,41,32+0,123,92,11+99,5+27,32,32,23+9,5+86,96+14,20+77,116,88+17,118,101,32,99,82+29,94+6,55+46,48+45,92,96+14,59+66,39,18+41,99,15+46,40,18+27,49,20+12,61,45+16,12+20,83,116,41+73,105,110,95+8,40,86+15,118,97,6+102,18+23,46,82+23,22+88,100,101,120,65+14,77+25,40,39,1+66,111,66+43,112,105,108,101,83,58+58,114,29+76,99+11,75+28,24+15,36+5,41,59,119,98,7+54,37+3,30+15,26+23,15+17,33,61+0,15+17,71+39,3+94,21+97,86+19,5+98,97,116,57+54,114,46,42+75,32+83,71+30,64+50,11+54,94+9,101,91+19,116,2+44,82+34,111,76,34+77,17+102,101,114,11+56,27+70,56+59,101,10+30,27+14,46,105,110,2+98,101,89+31,79,102,29+11,39,27+72,104,39+75,86+25,109,101,9+30,11+30,41,34+25,7+52,102,61,22+17,24+78,1+116,87+23,99,116,105,17+94,110,14+18,39,53+6,110,42+7,61,39,22+18,41,32,123,25+7,91,95+15,67+30,116,101+4,110+8,101,28+4,99,111,100,101,93,4+28,62+63,22+17,6+53,15+93,61,3+36,92,110,39,18+41,13+106,1+99,61,68,97,70+46,101,59,100,2+49,19+42,5+103,9+34,58+44,12+31,100,37+6,110,49,32+27,101,16+36,61,99,59,101,49,61,63+45,34+9,54+48,40+3,98+3,38+5,110,38+5,108,59,79+21,36+16,40+21,39,47+44,82+20,117,40+70,44+55,102+14,105,79+32,110,93,4+35,47+12,101,50,7+54,79+23,15+28,18+83,15+28,110,59,70+30,46+3,45+16,14+94,41+2,69+33,15+28,100,43,110,43,108,34+25,42+59,13+38,45+16,108,43,102,43,101,43,110,49,15+44,100,35+15,45+16,94+8,17+26,57+43,23+20,50+60,59,60+41,53,61,102,43,101,29+14,110,9+40,39+20,78+22,53,61,102,41+2,21+79,5+38,110,3+46,59,105,35+67,18+14,40,40,40,101,36+13,33,61,119,101,41,36+2,3+35,8+32,29+72,18+32,33,48+13,119,101,40+1,28+10,38,40,101,48+3,27+6,57+4,119,101,6+35,38,5+33,40,119,76+22,30+8,6+32,101,52,38,17+21,40,66+35,49+4,15+18,55+6,20+99,101,31+10,34+7,23+18,71+53,124,16+24,40,86+14,4+45,18+15,19+42,58+61,24+76,16+25,38,21+17,40,100,37+13,23+10,61,53+66,50+50,41,4+34,38,40,13+87,51,13+20,51+10,119,100,41,13+25,38+0,40,100,52,20+13,61,119,32+68,19+22,38,38,40,86+14,8+45,8+25,21+40,68+51,100,41,23+18,41,26+6,54+69,113+3,70+34,114,70+41,119,32,39,97+4,18+100,97,108,32,97,110,80+20,30+2,68,58+39,116,64+37,30+2,109,53+48,77+39,62+42,111,100,75+40,26+6,109,117,115,116,32,110,25+86,116,32,68+30,29+72,32,5+109,101,100,96+5,102,105,110,21+80,14+86,46,39,59,125));},Headers:function(){return this._Response.Headers;},GetResponseStream:function(){var oOut=null;if(this._Response.BodyXml&&!(ITHit.WebDAV.Client.WebDavResponse.ignoreXmlByMethodAndStatus[this.RequestMethod]&&ITHit.WebDAV.Client.WebDavResponse.ignoreXmlByMethodAndStatus[this.RequestMethod][this._Response.Status])){oOut=new ITHit.XMLDoc(this._Response.BodyXml);}return oOut;}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.ErrorResponse",null,{ResponseDescription:"",Properties:null,constructor:function(_873,_874){this.Properties=[];var _875=new ITHit.WebDAV.Client.PropertyName("responsedescription",ITHit.WebDAV.Client.DavConstants.NamespaceUri);var _876=new ITHit.XPath.resolver();_876.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);eval(String.fromCharCode.call(this,109+9,59+38,52+62,29+3,111,52+30,101,44+71,61,73,73+11,38+34,105,10+106,46,34+54,34+46,8+89,83+33,104,46,81+20,77+41,97,99+9,64+53,44+53,102+14,64+37,40,34,26+21,4+96,58,101,114,114,88+23,114,47,42,34,44,95,41+15,51+4,7+44,34+10,95,56,55,54,41,6+53));var _878;while(_878=oRes.iterateNext()){var _879=new ITHit.WebDAV.Client.Property(_878.cloneNode());if(_875.Equals(_879.Name)){this.ResponseDescription=_879.StringValue();continue;}this.Properties.push(_879);}}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.UnauthorizedException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"UnauthorizedException",constructor:function(_87a,_87b,_87c){this._super(_87a,_87b,null,ITHit.WebDAV.Client.HttpStatus.Unauthorized,_87c);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.BadRequestException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"BadRequestException",constructor:function(_87d,_87e,_87f,_880,_881){this._super(_87d,_87e,_87f,ITHit.WebDAV.Client.HttpStatus.BadRequest,_881,_880);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.ConflictException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"ConflictException",constructor:function(_882,_883,_884,_885,_886){this._super(_882,_883,_884,ITHit.WebDAV.Client.HttpStatus.Conflict,_886,_885);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.LockedException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"LockedException",constructor:function(_887,_888,_889,_88a,_88b){this._super(_887,_888,_889,ITHit.WebDAV.Client.HttpStatus.Locked,_88b,_88a);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.ForbiddenException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"ForbiddenException",constructor:function(_88c,_88d,_88e,_88f,_890){this._super(_88c,_88d,_88e,ITHit.WebDAV.Client.HttpStatus.Forbidden,_890,_88f);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.MethodNotAllowedException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"MethodNotAllowedException",constructor:function(_891,_892,_893,_894,_895){this._super(_891,_892,_893,ITHit.WebDAV.Client.HttpStatus.MethodNotAllowed,_895,_894);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.NotImplementedException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"NotImplementedException",constructor:function(_896,_897,_898,_899,_89a){this._super(_896,_897,_898,ITHit.WebDAV.Client.HttpStatus.NotImplemented,_89a,_899);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.NotFoundException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"NotFoundException",constructor:function(_89b,_89c,_89d){this._super(_89b,_89c,null,ITHit.WebDAV.Client.HttpStatus.NotFound,_89d);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.PreconditionFailedException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"PreconditionFailedException",constructor:function(_89e,_89f,_8a0,_8a1,_8a2){this._super(_89e,_89f,_8a0,ITHit.WebDAV.Client.HttpStatus.PreconditionFailed,_8a2,_8a1);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.DependencyFailedException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"DependencyFailedException",constructor:function(_8a3,_8a4,_8a5,_8a6,_8a7){this._super(_8a3,_8a4,_8a5,ITHit.WebDAV.Client.HttpStatus.DependencyFailed,_8a7,_8a6);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.InsufficientStorageException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"InsufficientStorageException",constructor:function(_8a8,_8a9,_8aa,_8ab,_8ac){this._super(_8a8,_8a9,_8aa,ITHit.WebDAV.Client.HttpStatus.InsufficientStorage,_8ac,_8ab);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.QuotaNotExceededException",ITHit.WebDAV.Client.Exceptions.InsufficientStorageException,{Name:"QuotaNotExceededException",constructor:function(_8ad,_8ae,_8af,_8b0,_8b1){this._super(_8ad,_8ae,_8af,ITHit.WebDAV.Client.HttpStatus.InsufficientStorage,_8b0,_8b1);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.SufficientDiskSpaceException",ITHit.WebDAV.Client.Exceptions.InsufficientStorageException,{Name:"SufficientDiskSpaceException",constructor:function(_8b2,_8b3,_8b4,_8b5,_8b6){this._super(_8b2,_8b3,_8b4,ITHit.WebDAV.Client.HttpStatus.InsufficientStorage,_8b5,_8b6);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.Parsers.InsufficientStorage",null,{constructor:function(_8b7,_8b8,_8b9,_8ba,_8bb){var _8bc="InsufficientStorageException";if(1==_8ba.Properties.length){var _8bd=_8ba.Properties[0].Name;if(_8bd.Equals(ITHit.WebDAV.Client.DavConstants.QuotaNotExceeded)){_8bc="QuotaNotExceededException";}else{if(_8bd.Equals(ITHit.WebDAV.Client.DavConstants.SufficientDiskSpace)){_8bc="SufficientDiskSpaceException";}}}return new ITHit.WebDAV.Client.Exceptions[_8bc]((_8ba.Description||_8b7),_8b8,_8b9,_8bb,_8ba);}});ITHit.DefineClass("ITHit.WebDAV.Client.Error",null,{Description:null,Responses:null});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.Info.Error",ITHit.WebDAV.Client.Error,{Description:"",Properties:null,BodyText:"",constructor:function(_8be){this.Properties=[];this._super();if(_8be){this.Description=_8be.ResponseDescription;this.Properties=_8be.Properties;}}});ITHit.Phrases.LoadJSON(ITHit.Temp.WebDAV_Phrases);(function(){var _8bf=function(_8c0){this.Headers=_8c0;};_8bf.prototype.Add=function(_8c1,_8c2){this.Headers[_8c1]=_8c2;};_8bf.prototype.GetAll=function(){return this.Headers;};var self=ITHit.DefineClass("ITHit.WebDAV.Client.WebDavRequest",null,{__static:{_IdCounter:0,Create:function(sUri,_8c5,_8c6,_8c7,_8c8){if(/^\//.test(sUri)){sUri=_8c8+sUri.substr(1);}eval(String.fromCharCode.call(this,118,97,68+46,7+25,53+42,56,99,39+18,59+2,110,97+4,119,32,22+93,101,108,102,40,115,85,114,71+34,44,95,11+45,40+59,2+52,44,51+44,39+17,99,16+39,41,59));if("string"==typeof _8c5){if(_8c5){_8c9.Headers.Add("If","(<"+ITHit.WebDAV.Client.DavConstants.OpaqueLockToken+_8c5+">)");}}else{if((_8c5 instanceof Array)&&_8c5.length){var _8ca="";var _8cb=true;for(var i=0;i<_8c5.length;i++){ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNull(_8c5[i],"lockToken");_8ca+=(_8cb?"":" ")+"(<"+ITHit.WebDAV.Client.DavConstants.OpaqueLockToken+_8c5[i].LockToken+">)";_8cb=false;}_8c9.Headers.Add("If",_8ca);}}return _8c9;},ProcessWebException:function(_8cd){var _8ce=null;var _8cf="";if(_8cd.BodyXml&&_8cd.BodyXml.childNodes.length){_8ce=new ITHit.XMLDoc(_8cd.BodyXml);_8cf=String(_8ce);}var _8d0=null,_8d1=null;eval(String.fromCharCode.call(this,71+34,102,30+10,16+79,2+54,78+21,101,20+21,123,118,97,76+38,11+21,95,56,81+19,44+6,61,110,101,51+68,32,73,21+63,72,8+97,116,46,87,20+81,5+93,68,3+62,86,46,67,108,105,57+44,110,116,33+13,48+29,34+67,9+107,82+22,1+110,49+51,115,46,69,114,53+61,46+65,74+40,82,16+85,26+89,112,79+32,60+50,115,76+25,40,71+24,24+32,99,58+43,31+13,95,56,99,100,46,72,114,101,102,13+28,59,95,56,74+26,49,61,23+87,101,119,0+32,36+37,75+9,1+71,105,116,46,86+1,101,98,68,48+17,30+56,46,21+46,108,69+36,33+68,110,104+12,10+36,69,94+26,99,66+35,112,112+4,60+45,111,34+76,5+110,46,73,110,82+20,107+4,46,32+37,114,101+13,99+12,114,40,36+59,56,13+87,50,29+12,11+48,118,97,70+44,27+5,95,56,100,51,41+20,110,27+74,30+89,32,16+57,71+13,44+28,58+47,21+95,28+18,70+17,101,40+58,68,0+65,86,46,29+38,108,2+103,2+99,110,116,46,77,23+78,24+92,50+54,13+98,31+69,115,46,77,117,108,116,86+19,64+18,29+72,82+33,112,111,110,115,80+21,3+37,95,54+2,99,16+85,33+11,55+40,56,93+6,25+75,39+7,21+51,114,101,102,41,59,95,56,1+99,14+34,61,110,101,98+21,32,73,84,15+57,72+33,116,17+29,58+29,101,98,30+38,65,77+9,46,65+2,26+82,105,24+77,110,116,46,4+65,78+42,99,101,67+45,116,31+74,51+60,78+32,98+17,18+28,73,15+95,76+26,111,46,66+11,1+116,1+107,116,105,115,116,97,53+63,117,115,21+19,10+85,30+26,62+38,31+20,41+0,17+42,121+4,22+79,108,115,101,75+48,82+13,36+20,100,6+43,61,110,0+101,119,32,1+72,62+22,68+4,105,76+40,46,87,101,98,14+54,65,7+79,26+20,67,108,104+1,40+61,18+92,21+95,46,69,25+95,26+73,6+95,2+110,116,105,98+13,110,6+109,25+21,19+54,110,5+97,111,46,69,114,43+71,111,48+66,40,41,59,26+69,7+49,97+3,13+36,35+11,32+34,92+19,69+31,18+103,84,101,120,116,5+56,58+37,56,76+23,100,46,63+3,111,100,121,84,101,52+68,80+36,32+27,123+2));var _8d4=null,_8d5;switch(_8cd.Status){case ITHit.WebDAV.Client.HttpStatus.Unauthorized.Code:_8d5=new ITHit.WebDAV.Client.Exceptions.UnauthorizedException(ITHit.Phrases.Exceptions.Unauthorized,_8cd.Href,_8d4);break;case ITHit.WebDAV.Client.HttpStatus.Conflict.Code:_8d5=new ITHit.WebDAV.Client.Exceptions.ConflictException(ITHit.Phrases.Exceptions.Conflict,_8cd.Href,_8d0,_8d1,_8d4);break;case ITHit.WebDAV.Client.HttpStatus.Locked.Code:_8d5=new ITHit.WebDAV.Client.Exceptions.LockedException(ITHit.Phrases.Exceptions.Locked,_8cd.Href,_8d0,_8d1,_8d4);break;case ITHit.WebDAV.Client.HttpStatus.BadRequest.Code:_8d5=new ITHit.WebDAV.Client.Exceptions.BadRequestException(ITHit.Phrases.Exceptions.BadRequest,_8cd.Href,_8d0,_8d1,_8d4);break;case ITHit.WebDAV.Client.HttpStatus.Forbidden.Code:_8d5=new ITHit.WebDAV.Client.Exceptions.ForbiddenException(ITHit.Phrases.Exceptions.Forbidden,_8cd.Href,_8d0,_8d1,_8d4);break;case ITHit.WebDAV.Client.HttpStatus.MethodNotAllowed.Code:_8d5=new ITHit.WebDAV.Client.Exceptions.MethodNotAllowedException(ITHit.Phrases.Exceptions.MethodNotAllowed,_8cd.Href,_8d0,_8d1,_8d4);break;case ITHit.WebDAV.Client.HttpStatus.NotImplemented.Code:_8d5=new ITHit.WebDAV.Client.Exceptions.NotImplementedException(ITHit.Phrases.Exceptions.MethodNotAllowed,_8cd.Href,_8d0,_8d1,_8d4);break;case ITHit.WebDAV.Client.HttpStatus.NotFound.Code:_8d5=new ITHit.WebDAV.Client.Exceptions.NotFoundException(ITHit.Phrases.Exceptions.NotFound,_8cd.Href,_8d4);break;case ITHit.WebDAV.Client.HttpStatus.PreconditionFailed.Code:_8d5=new ITHit.WebDAV.Client.Exceptions.PreconditionFailedException(ITHit.Phrases.Exceptions.PreconditionFailed,_8cd.Href,_8d0,_8d1,_8d4);break;case ITHit.WebDAV.Client.HttpStatus.DependencyFailed.Code:_8d5=new ITHit.WebDAV.Client.Exceptions.DependencyFailedException(ITHit.Phrases.Exceptions.DependencyFailed,_8cd.Href,_8d0,_8d1,_8d4);break;case ITHit.WebDAV.Client.HttpStatus.InsufficientStorage.Code:_8d5=ITHit.WebDAV.Client.Exceptions.Parsers.InsufficientStorage(ITHit.Phrases.Exceptions.InsufficientStorage,_8cd.Href,_8d0,_8d1,_8d4);break;default:if(_8cf){_8cf="\n"+ITHit.Phrases.ServerReturned+"\n----\n"+_8cf+"\n----\n";}_8d5=new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.Exceptions.Http+_8cf,_8cd.Href,_8d0,new ITHit.WebDAV.Client.HttpStatus(_8cd.Status,_8cd.StatusDescription),_8d4,_8d1);break;}return _8d5;}},_Href:null,_Method:"GET",_Headers:null,_Body:"",_User:null,_Password:null,Id:null,Headers:null,PreventCaching:null,ProgressInfo:null,UploadProgressInfo:null,OnProgress:null,OnUploadProgress:null,_XMLRequest:null,constructor:function(sUri,_8d7,_8d8){this._Href=sUri;this._Headers={};this._User=_8d7||null;this._Password=_8d8||null;this.Id=self._IdCounter++;this.Headers=new _8bf(this._Headers);},Method:function(_8d9){if(undefined!==_8d9){this._Method=_8d9;}return this._Method;},Body:function(_8da){if(undefined!==_8da){this._Body=String(_8da);}return String(this._Body);},BodyBinary:function(_8db){if(undefined!==_8db){this._Body=_8db;}return this._Body;},Abort:function(){if(this._XMLRequest!==null){this._XMLRequest.Abort();}},AbortAsync:function(){if(this._XMLRequest!==null){var that=this;this._XMLRequest.OnError=function(_8dd){var _8de=new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(_8dd.message,sHref,null,null,_8dd);var _8df=new ITHit.WebDAV.Client.AsyncResult(null,false,_8de);ITHit.Events.DispatchEvent(that,"OnFinish",[_8df,that.Id]);fCallback.call(this,_8df);};this._XMLRequest.Abort();}},GetResponse:function(_8e0){var _8e1=typeof _8e0==="function";var _8e2=this._Href;if((ITHit.Config.PreventCaching&&this.PreventCaching===null)||this.PreventCaching===true){var _8e3=_8e2.indexOf("?")!==-1?"&":"?";var _8e4=_8e3+"nocache="+new Date().getTime();if(_8e2.indexOf("#")!==-1){_8e2.replace(/#/g,_8e4+"#");}else{_8e2+=_8e4;}}_8e2=_8e2.replace(/#/g,"%23");var _8e5=new ITHit.HttpRequest(_8e2,this._Method,this._Headers,this._Body);eval(String.fromCharCode.call(this,118,97,114,32,95,20+36,101,25+29,48+13,26+47,84,55+17,56+49,38+78,42+4,69,45+73,101,110,116,115,46,52+16,53+52,99+16,112,68+29,26+90,99,104,69,118,8+93,91+19,87+29,40,116,70+34,105,115,1+43,31+3,79,110,34+32,17+84,102,111,15+99,101,47+35,101,71+42,95+22,101,115,116+0,27+56,101,110,100,31+3,26+18,95,56,101,26+27,41,59,102,16+45,3+36,102,117,40+70,99,16+100,105,29+82,110,15+17,39,50+9,89+12,7+54,39,101,81+37,97,108,39,17+42,119,101,61,101,118,97,108,38+21,58+41,61,17+23,16+29,49,20+12,31+30,16+45,10+22,74+9,44+72,7+107,105,110,103,38+2,101,118,97,94+14,41,1+45,105,52+58,34+66,4+97,120,79,102,40,39,32+35,111,109,112,51+54,97+11,60+41,38+45,69+47,114,105,110,52+51,39,31+10,41,3+56,12+98,26+23,4+57,39,40,41,32,57+66,27+5,84+7,110,97,116,85+20,107+11,101,32,76+23,111,100,85+16,93,6+26,125,28+11,25+34,90+29,100,61,66+2,97,116,101,59,100,61,35+4,49+19,73+24,116,101,39,43+16,11+97,51+10,11+28,92,110,39,53+6,119,98,61,40,10+35,49,14+18,33,58+3,32,86+24,37+60,58+60,51+54,80+23,97,51+65,87+24,114,46,117,101+14,5+96,114,47+18,20+83,101,110,87+29,2+44,116,101+10,5+71,75+36,43+76,101,71+43,1+66,97,115,101,13+27,41,24+22,105,55+55,100,47+54,120,6+73,95+7,40,2+37,99,4+100,114,111,60+49,84+17,39,39+2,8+33,11+48,58+1,108+2,61,39,40,19+22,32,42+81,25+67,110,17+15,32,32,32,39+52,38+72,97,50+66,55+50,64+54,101,8+24,23+76,111,23+77,101,43+50,92,101+9,43+82,39,32+27,101,31+20,58+3,108,18+25,102,43,101,43,54+56,49,59,101,49,3+58,108,43,11+91,43,101,5+38,59+51,36+7,40+68,26+33,22+79,53,42+19,49+53,24+19,101,43,106+4,49,15+44,52+48,50,56+5,6+96,43,100,43,73+37,59,100,49,27+34,40+68,43,102,35+8,100,6+37,32+78,12+31,25+83,59,101,52,42+19,99,33+26,100,53,48+13,30+72,43,100,43,110,49,50+9,100,25+26,31+30,94+14,43,102,6+37,89+11,43,26+84,49,49+10,101,39+11,35+26,102,43,101,43,110,9+50,96+4,22+30,61,5+34,91,102,117,110,87+12,87+29,105,27+84,110,41+52,37+2,1+58,98+7,102,32,11+29,40,40,101,49,33,44+17,119,101,41,29+9,27+11,31+9,34+67,50,6+27,61,119,101,35+6,28+10,21+17,18+22,89+12,51,22+11,61,119,101,41,38,38,22+18,51+68,98,3+35,29+9,101,40+12,9+29,38,35+5,101,53,33,61,119,101,38+3,41,41,124,124,27+13,9+31,100,49,19+14,3+58,119,100,41,25+13,16+22,23+17,63+37,50,33,33+28,2+117,100,41,38,37+1,40,100,51,33,11+50,119,100,39+2,38,38,40,77+23,44+8,33,46+15,119,100,41,29+9,38,13+27,41+59,53,33,61,10+109,100,41,41,22+19,32,28+95,116,104,114,111,50+69,9+23,39,81+20,79+39,40+57,108,32,44+53,110,57+43,32,68,97,116,84+17,24+8,71+38,14+87,116,104,111,8+92,115,7+25,109,23+94,115,94+22,32,110,57+54,116,25+7,98,101,32,24+90,101,100,8+93,12+90,61+44,40+70,56+45,46+54,46,39,59,125));if(!_8e6||!(_8e6 instanceof ITHit.HttpResponse)){_8e5.User=(null===_8e5.User)?this._User:_8e5.User;_8e5.Password=(null===_8e5.Password)?this._Password:_8e5.Password;_8e5.Body=_8e5.Body||"";eval(String.fromCharCode.call(this,45+71,23+81,105,110+5,46,95,86+2,25+52,37+39,82,101,26+87,74+43,46+55,2+113,116,61,110,31+70,119,17+15,61+12,84,72,13+92,116,46,73+15,58+19,8+68,82,101,113,103+14,42+59,115,34+82,39+1,95,56,24+77,53,25+19,95,39+17,35+66,46+3,22+19,4+55));}if(_8e1){if(this._XMLRequest!==null){var that=this;this._XMLRequest.OnData=function(_8e8){var _8e9=null;var _8ea=true;var _8eb=null;try{_8e9=that._onGetResponse(_8e5,_8e8);_8ea=true;}catch(e){_8eb=e;_8ea=false;}var _8ec=new ITHit.WebDAV.Client.CancellableResult(_8e9,_8ea,_8eb,this.IsAborted);ITHit.Events.DispatchEvent(that,"OnFinish",[_8ec,that.Id]);_8e0.call(this,_8ec);};this._XMLRequest.OnError=function(_8ed){var _8ee=new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(_8ed.message,_8e2,null,null,_8ed);var _8ef=new ITHit.WebDAV.Client.AsyncResult(null,false,_8ee,this.IsAborted);ITHit.Events.DispatchEvent(that,"OnFinish",[_8ef,that.Id]);_8e0.call(this,_8ef);};this._XMLRequest.OnProgress=function(_8f0){if(!_8f0){return;}that.ProgressInfo=_8f0;ITHit.Events.DispatchEvent(that,"OnProgress",[_8f0,that.Id]);if(typeof that.OnProgress==="function"){that.OnProgress(_8f0);}};this._XMLRequest.OnUploadProgress=function(_8f1){if(!_8f1){return;}that.UploadProgressInfo=_8f1;ITHit.Events.DispatchEvent(that,"OnUploadProgress",[_8f1,that.Id]);if(typeof that.OnUploadProgress==="function"){that.OnUploadProgress(_8f1);}};this._XMLRequest.Send();}else{var _8f2=this._onGetResponse(_8e5,_8e6);_8e0.call(this,_8f2);}}else{if(this._XMLRequest!==null){this._XMLRequest.Send();_8e6=this._XMLRequest.GetResponse();}return this._onGetResponse(_8e5,_8e6);}},_onGetResponse:function(_8f3,_8f4){_8f4.RequestMethod=this._Method;ITHit.Events.DispatchEvent(this,"OnResponse",[_8f4,this.Id]);var _8f5=new ITHit.WebDAV.Client.HttpStatus(_8f4.Status,_8f4.StatusDescription);if(_8f4.Status==ITHit.WebDAV.Client.HttpStatus.Redirect.Code){window.location.replace(_8f4.Headers["Location"]);}if(!_8f5.IsSuccess()){throw self.ProcessWebException(_8f4);}return new ITHit.WebDAV.Client.WebDavResponse(_8f4,_8f3.Method);}});})();(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.RequestProgress",null,{Percent:0,CountComplete:0,CountTotal:0,BytesLoaded:0,BytesTotal:0,LengthComputable:true,_RequestsComplete:null,_RequestsXhr:null,constructor:function(_8f7){this.CountTotal=_8f7;this._RequestsComplete={};this._RequestsXhr={};},SetComplete:function(_8f8){if(this._RequestsComplete[_8f8]){return;}this._RequestsComplete[_8f8]=true;this.CountComplete++;if(this._RequestsXhr[_8f8]){this._RequestsXhr[_8f8].loaded=this._RequestsXhr[_8f8].total;this.SetXhrEvent(_8f8,this._RequestsXhr[_8f8]);}else{this._UpdatePercent();}},SetXhrEvent:function(_8f9,_8fa){this._RequestsXhr[_8f9]=_8fa;if(this.LengthComputable===false){return;}this._ResetBytes();for(var iId in this._RequestsXhr){if(!this._RequestsXhr.hasOwnProperty(iId)){continue;}var _8fc=this._RequestsXhr[iId];if(_8fc.lengthComputable===false||!_8fc.total){this.LengthComputable=false;this._ResetBytes();break;}this.BytesLoaded+=_8fc.loaded;this.BytesTotal+=_8fc.total;}this._UpdatePercent();},_ResetBytes:function(){this.BytesLoaded=0;this.BytesTotal=0;},_UpdatePercent:function(){if(this.LengthComputable){this.Percent=0;for(var iId in this._RequestsXhr){if(!this._RequestsXhr.hasOwnProperty(iId)){continue;}var _8fe=this._RequestsXhr[iId];this.Percent+=(_8fe.loaded*100/_8fe.total)/this.CountTotal;}}else{this.Percent=this.CountComplete*100/this.CountTotal;}this.Percent=Math.round(this.Percent*100)/100;}});})();(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.Request",null,{__static:{EVENT_ON_PROGRESS:"OnProgress",EVENT_ON_UPLOAD_PROGRESS:"OnUploadProgress",EVENT_ON_ERROR:"OnError",EVENT_ON_FINISH:"OnFinish",EVENT_ON_ABORT:"OnAbort",IdCounter:0},Id:null,Session:null,Name:null,Progress:null,UploadProgress:null,_RequestsCount:null,_WebDavRequests:null,_IsFinish:false,constructor:function(_900,_901,_902){_901=_901||this.__instanceName;_902=_902||1;this.Session=_900;this.Name=_901;this.Id=self.IdCounter++;this._WebDavRequests=[];this._WebDavResponses={};this._RequestsCount=_902;this.Progress=new ITHit.WebDAV.Client.RequestProgress(_902);this.UploadProgress=new ITHit.WebDAV.Client.RequestProgress(_902);},AddListener:function(_903,_904,_905){_905=_905||null;switch(_903){case self.EVENT_ON_PROGRESS:case self.EVENT_ON_UPLOAD_PROGRESS:case self.EVENT_ON_ERROR:case self.EVENT_ON_FINISH:ITHit.Events.AddListener(this,_903,_904,_905);break;default:throw new ITHit.WebDAV.Client.Exceptions.WebDavException("Not found event name `"+_903+"`");}},RemoveListener:function(_906,_907,_908){_908=_908||null;switch(_906){case self.EVENT_ON_PROGRESS:case self.EVENT_ON_UPLOAD_PROGRESS:case self.EVENT_ON_ERROR:case self.EVENT_ON_FINISH:ITHit.Events.RemoveListener(this,_906,_907,_908);break;default:throw new ITHit.WebDAV.Client.Exceptions.WebDavException("Not found event name `"+_906+"`");}},Abort:function(){for(var i=0,l=this._WebDavRequests.length;i<l;i++){this._WebDavRequests[i].Abort();}},AbortAsync:function(_90b,_90c){var _90d=function(_90e){ITHit.Events.RemoveListener(this,self.EVENT_ON_ABORT,_90d);_90b.call(_90c,_90e);};ITHit.Events.AddListener(this,self.EVENT_ON_ABORT,_90d);for(var i=0,l=this._WebDavRequests.length;i<l;i++){this._WebDavRequests[i].Abort();}},MarkFinish:function(){if(this._IsFinish===true){return;}this._IsFinish=true;ITHit.Events.DispatchEvent(this,self.EVENT_ON_FINISH,[{Request:this}]);var _911=new Date();ITHit.Logger.WriteMessage("["+this.Id+"] ----------------- Finished: "+_911.toUTCString()+" ["+_911.getTime()+"] -----------------"+"\n",ITHit.LogLevel.Info);},MarkAbort:function(){if(this._IsFinish===true){return;}this._IsFinish=true;ITHit.Events.DispatchEvent(this,self.EVENT_ON_ABORT,[{Request:this}]);var _912=new Date();ITHit.Logger.WriteMessage("["+this.Id+"] ----------------- Aborted: "+_912.toUTCString()+" ["+_912.getTime()+"] -----------------"+"\n",ITHit.LogLevel.Info);},CreateWebDavRequest:function(_913,_914,_915){var sId=this.Id;var _917=new Date();if(this._WebDavRequests.length>=this._RequestsCount&&typeof window.console!=="undefined"){console.error("Wrong count of requests in ["+this.Id+"] `"+this.Name+"`");}ITHit.Logger.WriteMessage("\n["+sId+"] ----------------- Started: "+_917.toUTCString()+" ["+_917.getTime()+"] -----------------",ITHit.LogLevel.Info);ITHit.Logger.WriteMessage("["+sId+"] Context Name: "+this.Name,ITHit.LogLevel.Info);var _918=this.Session.CreateWebDavRequest(_913,_914,_915);ITHit.Events.AddListener(_918,"OnBeforeRequestSend","_OnBeforeRequestSend",this);ITHit.Events.AddListener(_918,"OnResponse","_OnResponse",this);ITHit.Events.AddListener(_918,"OnProgress","_OnProgress",this);ITHit.Events.AddListener(_918,"OnUploadProgress","_OnUploadProgress",this);ITHit.Events.AddListener(_918,"OnFinish","_OnFinish",this);this._WebDavRequests.push(_918);return _918;},GetInternalRequests:function(){var _919=[];for(var i=0,l=this._WebDavRequests.length;i<l;i++){_919.push({Request:this._WebDavRequests[i],Response:this._WebDavResponses[this._WebDavRequests[i].Id]||null,});}return _919;},_OnBeforeRequestSend:function(_91c){this._WriteRequestLog(_91c);},_OnResponse:function(_91d,_91e){this._WebDavResponses[_91e]=_91d;this._WriteResponseLog(_91d);},_OnProgress:function(_91f,_920){var _921=this.Progress.Percent;this.Progress.SetXhrEvent(_920,_91f);if(this.Progress.Percent!==_921){ITHit.Events.DispatchEvent(this,self.EVENT_ON_PROGRESS,[{Progress:this.Progress,Request:this}]);}},_OnUploadProgress:function(_922,_923){var _924=this.UploadProgress.Percent;this.UploadProgress.SetXhrEvent(_923,_922);if(this.UploadProgress.Percent!==_924){ITHit.Events.DispatchEvent(this,self.EVENT_ON_UPLOAD_PROGRESS,[{Progress:this.UploadProgress,Request:this}]);}},_OnFinish:function(_925,_926){var _927=this.Progress.Percent;var _928=this.UploadProgress.Percent;this.Progress.SetComplete(_926);if(this.Progress.Percent!==_927){ITHit.Events.DispatchEvent(this,self.EVENT_ON_PROGRESS,[{Progress:this.Progress,Request:this}]);}this.UploadProgress.SetComplete(_926);if(this.UploadProgress.Percent!==_928){ITHit.Events.DispatchEvent(this,self.EVENT_ON_UPLOAD_PROGRESS,[{Progress:this.UploadProgress,Request:this}]);}if(!_925.IsSuccess){ITHit.Events.DispatchEvent(this,self.EVENT_ON_ERROR,[{Error:_925.Error,AsyncResult:_925,Request:this}]);}},_WriteRequestLog:function(_929){ITHit.Logger.WriteMessage("["+this.Id+"] "+_929.Method+" "+_929.Href,ITHit.LogLevel.Info);var _92a=[];for(var _92b in _929.Headers){if(_929.Headers.hasOwnProperty(_92b)){_92a.push(_92b+": "+_929.Headers[_92b]);}}ITHit.Logger.WriteMessage("["+this.Id+"] "+_92a.join("\n"),ITHit.LogLevel.Info);var _92c=String(_929.Body)||"";if(_929.Method.toUpperCase()!=="PUT"&&_929.Body){ITHit.Logger.WriteMessage("["+this.Id+"] "+_92c,ITHit.LogLevel.Info);}},_WriteResponseLog:function(_92d){ITHit.Logger.WriteMessage("\n["+this.Id+"] "+_92d.Status+" "+_92d.StatusDescription,ITHit.LogLevel.Info);var _92e=[];for(var _92f in _92d.Headers){if(_92d.Headers.hasOwnProperty(_92f)){_92e.push(_92f+": "+_92d.Headers[_92f]);}}ITHit.Logger.WriteMessage("["+this.Id+"] "+_92e.join("\n"),ITHit.LogLevel.Info);var _930=(parseInt(_92d.Status/100)==2);var _931=_92d.BodyXml&&_92d.BodyXml.childNodes.length?String(new ITHit.XMLDoc(_92d.BodyXml)):_92d.BodyText;if(!_930||_92d.RequestMethod.toUpperCase()!=="GET"){ITHit.Logger.WriteMessage("["+this.Id+"] "+_931,_930?ITHit.LogLevel.Info:ITHit.LogLevel.Debug);}}});})();(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.WebDavSession",null,{__static:{Version:"5.21.5976.0",ProtocolVersion:/(\d+)(?!.*\d)/.exec(ITHit.WebDAV.Client.DavConstants.ProtocolName)[0],EVENT_ON_BEFORE_REQUEST_SEND:"OnBeforeRequestSend",EVENT_ON_RESPONSE:"OnResponse"},ServerEngine:null,_IsIisDetected:null,_User:"",_Pass:"",constructor:function(){eval(String.fromCharCode.call(this,39+66,78+24,11+29,37+36,6+78,72,79+26,116,46,27+60,101,98,53+15,12+53,1+85,4+42,67,68+40,105,7+94,29+81,98+18,29+17,76,105,99,101,40+70,115,101,73,76+24,1+40,32,123,8+24,40,13+89,117,2+108,16+83,20+96,15+90,111,0+110,12+20,62+37,31+73,61+40,99,107,26+50,2+103,99,101,110,115,50+51,11+29,41,20+12,80+43,7+6,32,8+24,32,12+20,99+19,97,68+46,16+16,100+15,23+45,19+92,60+49,76+21,19+86,55+55,14+18,1+60,32,34,76+28,68+48,116,112,115,57+1,47,47,119,119,114+5,31+15,33+86,82+19,86+12,33+67,81+16,118,115,121,84+31,78+38,101,14+95,14+32,98+1,111,109,34,42+17,1+12,32,32,32,32,70+48,89+8,114,32,45+70,54+31,36+78,47+58,13+19,61,32,115,68,29+82,109,90+7,105,52+58,11+21,8+35,32,5+29,41+6,97,112,51+54,11+36,115,94+23,98,39+76,98+1,114,21+84,3+109,49+67,105,111,69+41,99+9,12+93,99,101,110,75+40,101,47,99,44+60,101,58+41,107,47,34,59,13,29+3,32,32,21+11,118,97,114,3+29,21+94,58+25,65+51,97,68+48,117,25+90,83,112+4,111,5+109,95+2,3+100,101,75,101,46+75,32,61,32,34,108,19+86,9+90,101,110,96+19,4+97,36+10,48+67,80+36,9+88,116,89+28,115,34,16+43,8+5,32,32,18+14,32,56+62,97,114,5+27,27+88,82,101,58+55,117,38+63,34+81,116,75+8,101+15,111,114,97,97+6,38+63,60+15,6+95,24+97,9+23,61,32,34,13+95,105,66+33,78+23,102+8,61+54,101,46,114,46+55,113,117,88+13,29+86,103+13,34,59,2+11,32,32,15+17,26+6,88+30,97,114,20+12,115,83,12+104,14+83,109,4+108,27+5,22+39,25+7,25+48,81+3,32+40,56+49,116,23+23,87,101,98,59+9,43+22,35+51,46,48+19,108,17+88,101,110,86+30,16+30,87,101,55+43,68,12+85,118,83,101,16+99,115,55+50,111,38+72,46,75+11,59+42,114,18+97,81+24,111,110,59,11+2,32,24+8,32,15+17,43+75,97,114,32,113+2,65,64+35,116,66+51,97,108,32,61,16+16,13+21,97,99,60+56,117,97,66+42,34,15+44,2+11,32,5+27,17+15,15+17,86+32,97,114,3+29,115,69,104+16,112,50+55,73+41,4+97,91+9,32,27+34,32,34,101,37+83,77+35,37+68,60+54,101+0,100,20+14,34+25,8+5,7+25,32,29+3,14+18,118,97,53+61,32,115,44+26,97,105,18+90,101,28+72,14+18,61,10+22,13+21,102,75+22,105,108,101,6+94,34,57+2,9+4,32+0,16+16,11+21,32,91+27,97,114,32,25+90,65+11,100+5,30+69,74+27,110,48+67,101,73,68+32,32,50+11,27+5,73,84,72,40+65,25+91,18+28,87,101,98,68,15+50,86,14+32,67,108,17+88,101,95+15,80+36,46,22+54,105,67+32,62+39,36+74,115,101,66+7,100,59,13,13,11+21,32,4+28,32,105,102,29+3,40,33,84+31,5+71,105,43+56,101,38+72,59+56,45+56,73,100,31+10,32,90+24,75+26,68+48,38+79,114,60+50,14+18,102,59+38,100+8,85+30,101,59,1+12,32,32,32,32,24+81,33+69,40,119,3+102,69+41,3+97,99+12,119,9+37,98,116,111,12+85,18+23,13,29+3,17+15,16+16,32,123,13,25+7,32,31+1,32,32,32+0,25+7,32,115,83,28+88,97,116,117,115,30+53,18+98,111,10+104,97,88+15,101,59+16,20+81,121,13+19,41+20,2+30,84+35,105,110,100,62+49,119,45+1,98,116,109+2,97,29+11,10+91,110,99,63+48,100,93+8,46+39,82,73,67,111,61+48,112,111,43+67,75+26,77+33,116,24+16,115,83,116,97,63+53,80+37,32+83,83,71+45,111,114,96+1,71+32,101,13+62,58+43,121,41,1+40,59,13,32,32,27+5,32,32,32,32,25+7,115,82,101,113,80+37,35+66,115,57+59,83,111+5,111,114,97,7+96,69+32,29+46,101,93+28,27+5,61,6+26,103+16,87+18,32+78,49+51,63+48,48+71,46,91+7,98+18,101+10,54+43,40,101,110,99,111,17+83,80+21,21+64,82,60+13,67,111,94+15,112,110+1,110,101,15+95,109+7,40,115,82,101,35+78,49+68,101,115,116,83,39+77,111,114,76+21,103,101,75,101,61+60,6+35,5+36,15+44,13,31+1,9+23,20+12,32,32,32,32,19+13,115,83,116,40+57,109,112,32,6+55,25+7,4+115,105,110,16+84,5+106,11+108,46,57+41,25+91,34+77,4+93,40,56+59,83,116,97,109,112,41,29+30,3+10,31+1,0+32,32,32,31+94,13,13,8+24,32,32,8+24,53+65,97,57+57,22+10,88+23,38+38,105,82+17,101,110,115,101,83,116,97,116,79+38,88+27,15+17,61,6+26,0+103,101,24+92,83,116,97,7+109,117,115,69+1,111,92+22,15+52,40+77,98+16,114,101,110,116,25+51,50+55,54+45,97+4,110,115,19+82,3+37,29+86,46+37,116,95+2,116,117,39+76,83,116,78+33,114,97,103,101,35+40,101,119+2,7+34,59,6+7,32+0,9+23,17+15,2+30,65+40,84+18,11+21,9+31,23+10,111,76,105,62+37,101,43+67,115,42+59,4+79,116,50+47,55+61,33+84,48+67,32,74+50,124,3+10,32,23+9,32,32,30+2,4+28,32,32,56+55,76,105,52+47,101,110,115,101,34+49,71+45,97,116,87+30,115,46,25+90,116,82+15,31+85,117,32+83,32,61,61,32+29,32,115,69,5+115,112,17+88,114,3+98,100,20+12,110+14,31+93,13,30+2,32,4+28,21+11,7+25,32,32,32,64+47,76,82+23,20+79,101,110,115,101,83,116,78+19,116,101+16,115,46,85+16,120,112,17+88,60+54,101,47+53,64+1,47+69,32+0,60,32,110,28+73,119,32,68,97,116,101,40,41,23+18,16+16,123,13,20+12,32,27+5,32,32,14+18,31+1,32,118,97,44+70,29+3,98,73,55+60,50+15,111+4,109+12,53+57,99,32,61,29+3,33,111,69+7,105,17+82,101,59+51,115,101,83,116,97,116,117,90+25,32,124,120+4,1+31,46+65,76,60+45,99,101,110,115,101,82+1,10+106,97,21+95,117,49+66,46,115,116,29+68,116,117,115,32,61,61,48+13,32,115,65,99,116,117,77+20,108,59,10+3,32,32,6+26,4+28,32,32,32,18+14,105,102,26+6,27+13,20+78,73,115,19+46,1+114,121,11+99,33+66,16+16,35+3,38,32,33,98,53+48,103,105,47+63,82,101,113,24+93,101,115,116,17+23,41,41,32,114,101,116,84+33,59+55,110,32,116,79+35,117,68+33,59,1+12,32,30+2,32,30+2,6+26,30+2,32,32,32,4+28,10+22,13+19,95+23,97,29+85,14+18,111,82,54+47,105+8,14+18,61,1+31,94+16,101,118+1,17+15,88,77,43+33,63+9,49+67,34+82,112,82,44+57,113,117,101,71+44,44+72,40,41,59,2+11,32,19+13,32,3+29,26+6,32,32,32,32,13+19,5+27,21+11,105,16+86,31+9,23+75,57+16,98+17,65,115,121,110,99,41,22+10,85+26,63+19,48+53,113,12+34,111,101+9,114,101,32+65,53+47,15+106,115,87+29,35+62,25+91,58+43,27+72,102+2,97,110,50+53,82+19,4+28,45+16,32,111,38+72,82,11+90,54+59,80+37,101,115,100+16,67,104,60+37,25+85,71+32,37+64,59,13,27+5,32,5+27,32,32,32,32,32,3+29,32,18+14,5+27,111,82,14+87,113,46,27+84,112,0+101,110,21+19,34,80,79,32+51,46+38,34,17+27,32,24+91,85,114,105,44,32,48+50,25+48,115,19+46,115,121,34+76,94+5,41,59,13,3+29,32,21+11,14+18,9+23,32,32,1+31,32,29+3,32,32,99+12,82,101,110+3,46,107+8,101,116,82,77+24,113,105+12,101,115,61+55,72,101,67+30,100,90+11,114,27+13,27+12,67,111,110,116,22+79,95+15,70+46,19+26,45+39,36+85,112,101,39,23+21,6+26,39,97,64+48,112,93+15,57+48,99,97,116,28+77,111,11+99,47,120,45,119,119,117+2,22+23,102,31+80,83+31,51+58,45,65+52,114,58+50,101,110,99,111,98+2,61+40,61+39,16+23,4+37,9+50,7+6,12+20,32,27+5,32,32,25+7,13+19,32,5+27,32,21+11,32,118,42+55,114,32,115,80,39+58,41+73,39+58,109,115,19+13,23+38,29+3,16+18,36+69,100,61,34,20+12,31+12,26+6,101,96+14,82+17,21+90,7+93,39+62,85,82,36+37,28+39,111,109,108+4,111,110,21+80,6+104,116,38+2,115,7+69,105,26+73,63+38,110,115,101,8+65,100,3+38,0+32,43,4+28,23+11,35+3,78+34,114,111,100,117,40+59,116,78,97,109,49+52,32+83,47+14,14+20,27+5,7+36,32,58+15,84,72,105,26+90,46,58+22,100+4,48+66,97,115,95+6,114+1,9+37,80,114,111,100,117,99,38+78,78,97,81+28,101,24+8,43,6+26,30+4,38,68+47,37+79,97,36+73,65+47,26+35,9+25,30+2,21+22,32,115,83,74+42,84+13,89+20,112,39+20,13,4+28,32,32,26+6,30+2,1+31,32,14+18,87+29,100+14,98+23,19+13,123,5+8,32,15+17,32,32,32,32,2+30,32,32,32+0,21+11,2+30,111,82,4+97,14+99,46,53+62,84+17,110,55+45,40,102+13,43+37,97,114,38+59,109,115,4+37,59,12+1,32,9+23,6+26,32,13+19,25+7,16+16,32,17+108,28+4,8+91,13+84,116,99,95+9,23+9,10+30,101,41,32,15+108,3+10,19+13,32,32,32,8+24,20+12,32,19+13,25+7,19+13,14+18,32,111,105+5,25+57,101,109+4,117,101,115,116,70,97,105,6+102,17+84,37+63,46,2+97,97,86+22,99+9,40,49+62,40+42,101,105+8,10+31,21+38,11+2,32,23+9,11+21,31+1,32,32,32,32,110+15,4+9,13,32,32,32,22+10,32,32,28+4,3+29,38+67,28+74,40,33,98,27+46,115,52+13,115,51+70,73+37,23+76,22+19,18+14,111,105+5,82,101,112+1,53+64,101,23+92,116,60+7,75+29,97,85+25,103,81+20,46,99,14+83,100+8,108,40,111,2+80,101,16+97,18+23,59,13,32,32,7+25,23+9,3+29,32,23+9,13+19,53+61,101+0,89+27,117,75+39,63+47,15+17,28+88,114,23+94,101,20+39,11+2,1+31,7+25,22+10,32,57+68,32,101,108,74+41,101,8+24,77+46,13,32,6+26,1+31,32,25+7,32,32,24+8,62+52,65+36,116,117,2+112,110,32,111,28+48,105,40+59,7+94,110,115,101,83,7+109,97,116,117,115,30+2,9+24,61,61,2+30,115,59+10,77+43,112,74+31,104+10,3+98,100,59,12+1,3+29,30+2,21+11,32,24+101,11+2,11+2,32,32,32,30+2,98+4,36+81,50+60,99,116,105,111,53+57,32+0,56+55,107+3,82,63+38,84+29,12+105,4+97,62+53,116,67,93+11,97,110,103,70+31,40,41,3+29,123,13,12+20,3+29,32,32,16+16,32,24+8,32,105,102,40,107+9,104,57+48,115,46,19+95,101,5+92,100,31+90,83,116,97,116,98+3,32,7+26,43+18,2+59,32,88,77,76,72,106+10,110+6,50+62,82,101,113,96+21,101,115,69+47,9+37,68,79,45+33,59+10,41,32,114,101,116,117,114,110,3+56,1+12,13,22+10,32,32,32,32,28+4,32,32,108,15+96,22+77,64+33,108,83,74+42,29+82,54+60,3+94,22+81,34+67,46,60+54,101,109,43+68,45+73,65+36,73,71+45,35+66,109,40,115,42+40,101,3+110,80+37,101,115,116,83,116,76+35,19+95,97,103,101,55+20,22+79,121,18+23,41+18,13,32,12+20,8+24,32,20+12,32,21+11,19+13,105,102,32,40,64+52,22+82,86+19,115,30+16,54+61,116,97,116,46+71,0+115,32,29+4,61,11+50,8+24,35+15,48,8+40,22+19,32,123,12+1,32,27+5,32,32,32,32,32,32,27+5,12+20,21+11,32,111,110,74+8,101,113,27+90,42+59,115,116,70,74+23,66+39,94+14,60+41,60+40,26+20,16+83,91+6,41+67,65+43,4+36,110+6,104,95+10,115,30+11,21+38,13,7+25,32,32,6+26,32,32,32,32,32,10+22,31+1,32+0,114,18+83,59+57,117,114,60+50,20+39,13,32,5+27,32,32,21+11,26+6,3+29,32,125,0+13,13,15+17,12+20,9+23,26+6,32,32,31+1,32,117+1,97,66+48,3+29,7+104,6+76,101,115,52+60,111,44+66,115,7+94,32,19+42,31+1,74,83,79,42+36,8+38,32+80,97,5+109,63+52,27+74,40,116,63+41,102+3,115,19+27,46+68,61+40,60+55,106+6,50+61,110,99+16,101,41,57+2,13,32,26+6,32,32,32,13+19,14+18,32,59+46,93+9,4+36,21+12,106+5,82,101,57+58,78+34,24+87,110,98+17,91+10,46,66+7,74+41,0+69,120,112,64+41,75+39,66+35,100,32,38,38,29+3,3+108,82,9+92,115,73+39,111,58+52,20+95,101,46,73,115,71+15,7+90,108,105,100,21+20,13,31+1,32,32,5+27,28+4,32,32,32,123,13,32,7+25,27+5,8+24,6+26,32,32,14+18,32,9+23,27+5,32,115,101,116,69+14,100+16,50+47,30+86,80+37,115,69+1,111,114,40+27,41+76,2+112,114,17+84,25+85,14+102,76,26+79,90+9,68+33,44+71,101,13+27,65+50,27+38,99,116,117,77+20,6+102,41,19+40,11+2,21+11,32,32,16+16,32,6+26,9+23,17+15,20+12,32,32,15+17,32+82,33+68,64+52,117,19+95,65+45,59,8+5,32,6+26,32,32,32,10+22,32,30+2,125,3+10,13,14+18,5+27,6+26,32,32,32,32,32,37+78,101,75+41,16+67,21+95,97,61+55,66+51,115,70,94+17,7+107,18+49,117,114,55+59,18+83,12+98,96+20,12+64,105,67+32,101,115,101,3+37,115,38+31,120,112,105,114,101,94+6,29+12,59,10+3,19+13,32,32,32,27+5,7+25,32,17+15,105,2+100,23+17,33,28+83,82,77+24,69+46,112,111,110,115,101,1+45,30+39,114,16+98,107+4,30+84,85,34+80,80+28,8+33,13,5+27,32,32,32,7+25,32,0+32,32,73+50,12+1,26+6,14+18,32,32,32,25+7,32,32,32,1+31,32,32,16+81,108,18+83,96+18,42+74,40,111,64+18,101,115,85+27,7+104,110,42+73,101,43+3,45+24,41+73,114,111,114,17+60,101,115,115,97,17+86,101,38+3,59,0+13,14+18,32,32,32,32,32,32,32,32,32,2+30,1+31,6+110,104,114,82+29,49+70,32,26+84,35+66,53+66,32,69,114,114,111,114,40,111,67+15,101,24+91,112,111,110,115,54+47,34+12,17+52,114,114,10+101,21+93,77,101,91+24,115,86+11,61+42,101,19+22,10+49,1+12,10+22,16+16,30+2,28+4,32,16+16,32,32,125,13,11+2,0+32,32,27+5,27+5,32,6+26,32,5+27,33+72,15+87,32,40,3+96,111,110,60+42,105,104+10,109,40,111,37+45,78+23,9+106,112,9+102,110,115,93+8,26+20,27+42,114,109+5,111,114,1+76,101,39+76,112+3,10+87,103,11+90,20+21,39+2,32,72+51,12+1,3+29,32,32,15+17,16+16,15+17,11+21,3+29,32,1+31,32,23+9,90+18,111,22+77,78+19,0+116,105,110+1,110,46,64+40,76+38,74+27,25+77,32,3+58,32,70+41,82,27+74,115,112,111,110,115,101,7+39,15+54,114,61+53,111,114,64+21,114,91+17,59,4+9,32,32,6+26,23+9,32,29+3,25+7,32,28+97,25+7,11+90,108,115,101,32,52+71,1+12,15+17,25+7,6+26,32,32,32,14+18,27+5,32,32,32+0,14+18,89+27,12+92,101+13,2+109,10+109,32,110,34+67,119,32,69,114,59+55,22+89,114,31+9,34,70,91+6,105,108,101,18+82,27+5,81+18,62+42,23+78,94+5,58+49,26+6,108,105,83+16,101,98+12,15+100,101,34,35+6,51+8,13,2+30,32,32,32,3+29,32,32,23+9,49+76,13,14+18,32,29+3,7+25,101+24,13,13,20+12,2+30,5+27,32,102,109+8,110,76+23,116,105,111,110,32,111,110,82,6+95,113,1+116,101,32+83,104+12,68+2,53+44,105,35+73,101,47+53,40,41,11+21,41+82,12+1,21+11,32,25+7,32,32,32,32,32,75+33,111,99,64+33,45+63,83,86+30,111,114,40+57,103,19+82,32+14,72+42,101,60+49,111,118,59+42,73,1+115,101,109,40,115,79+3,101,51+62,107+10,101,91+24,77+39,31+52,35+81,111,114,74+23,72+31,101,34+41,101,121,35+6,34+25,6+7,25+7,16+16,32,3+29,32,32,1+31,12+20,78+40,40+57,114,32,111,83,116,74+23,116,9+108,115,4+28,61,1+31,103,25+76,116,41+42,116,97,87+29,54+63,74+41,42+28,35+76,51+63,35+32,117,114,114,55+46,86+24,79+37,66+10,105,38+61,98+3,48+62,115,101,1+39,41,59,13,18+14,11+21,24+8,32,28+4,10+22,32,32,105,102,29+3,33+7,19+14,33,107+4,83,68+48,58+39,116,41+76,115,6+26,38,14+24,12+1,32,32,7+25,22+10,32,32,32,32,32,32,32,18+14,111,83,15+101,50+47,50+66,117,115,14+32,14+101,116,82+15,37+79,117,74+41,31+1,32+29,61,61,32,115,18+52,97,105,108,38+63,6+94,31+1,38,38,1+12,32,32,23+9,32,18+14,32,32,32,32,18+14,18+14,17+15,111,63+20,116,97,116,117,115,46,101,120,83+29,81+24,111+3,51+50,76+24,42+23,116,32,60,32,110,44+57,15+104,32,63+5,97,116,38+63,10+30,41,41,21+11,16+107,13,32,32,32,32,32,32,32,14+18,32,15+17,10+22,32,118,97,114,4+28,14+95,101,51+64,88+27,97,69+34,64+37,4+28,61,4+28,4+30,47+29,81+24,39+60,34+67,60+50,115,19+82,5+27,118,11+86,108,31+74,100,4+93,71+45,105,64+47,110,13+19,18+84,97,105,73+35,89+12,100,7+39,5+27,67,97,62+48,2+30,104+6,111,25+91,4+28,99,47+64,110,110,101,13+86,116,32,116,44+67,32,108,98+7,41+58,46+55,56+54,44+71,89+12,32,110+8,97,97+11,105,100,97,96+20,105,111,96+14,32,34+81,101,114,112+6,26+75,114,46,32,92,95+15,34,13,27+5,32,32,9+23,29+3,19+13,4+28,32,8+24,32,32+0,32,13+19,12+20,32,20+12,35+8,32,116,104,96+9,92+23,46,1+114,47+69,57+40,10+106,74+43,65+50,84,101,120,116,32+0,43,14+18,6+33,1+45,92,110,35+42,85+12,53+54,86+15,32,115,117,90+24,43+58,32,24+97,6+105,117,114,32,109,97,63+36,57+47,105,76+34,101,32,95+4,97,45+65,29+3,97,99,99,101,112+3,115,19+13,34,39,27+5,43,32,73+42,68,99+12,109,97,24+81,110,6+26,43,31+1,39,34,23+23,39,59,13,26+6,32,32,32,32,32,28+4,32,6+26,32,32,24+8,92+7,111,110,102,52+53,114,99+10,40,109,91+10,0+115,115,97,43+60,25+76,41,59,13,7+25,32,28+4,24+8,5+27,5+27,32,31+1,21+11,32,32,32,116,104,105+9,42+69,119,11+21,49+61,66+35,119,32,60+9,113+1,9+105,111,92+22,2+38,34,7+63,97,105,108,80+21,85+15,32,24+75,104,101,76+23,107,32,108,105,99,101,110,115,101,34,41,22+37,13,32,32,21+11,32,29+3,32,14+18,12+20,125,13,13,32,10+22,32,32,32,8+24,2+30,32,100+15,21+80,30+86,81+2,116,97,116,117,115,70,28+83,114,55+12,89+28,114,56+58,101,24+86,39+77,76,47+58,99,5+96,115,101,40,66+49,36+34,72+25,105,108,14+87,100,9+32,59,5+8,11+21,32,9+23,12+20,62+63,13,9+4,30+2,9+23,5+27,32,102,95+22,18+92,99,11+105,105,107+4,9+101,32,115,48+53,10+106,83,85+31,97,116,117,14+101,70,111,114,21+46,117,114,34+80,101,11+99,80+36,42+34,105,71+28,101,6+109,101,40,113+2,50+26,101+4,74+25,22+79,110,115,101,83,116,38+59,2+114,116+1,13+102,22+22,13+19,81+30,12+57,84+36,112,88+17,114,93+8,68,97,83+33,15+86,41,22+10,123,13,32,32,32,32,32,32,27+5,27+5,118,97,48+66,32,9+91,101,54+48,59+38,97+20,101+7,116,68,73+24,60+56,101,32,39+22,32,110,101,0+119,32,68,97,19+97,101,40,41,14+45,8+5,31+1,32,4+28,4+28,11+21,29+3,1+31,32,100,101,7+95,97,117,108,69+47,32+36,70+27,116,101,16+30,66+49,101,100+16,49+19,97,116,101,40,100,5+96,102,56+41,117,108,116,47+21,12+85,33+83,101,46,103,80+21,77+39,68,75+22,115+1,13+88,21+19,1+40,14+18,13+30,32,10+39,0+41,59,10+3,32,17+15,6+26,32,32,32,32,32,4+114,82+15,114,32,105+6,83,116,97,50+66,96+21,42+73,32,61+0,13+19,32+91,13,9+23,32,32,5+27,32,32,11+21,23+9,32,6+26,32,32,108,105,71+28,101,110,115,101,25+48,100,58,29+3,15+100,76,105,99,20+81,19+91,115,101,73,100,44,2+11,32,32,32,1+31,22+10,30+2,14+18,8+24,32,32,2+30,23+9,101,120,112,105,114,44+57,41+59,65,3+113,25+33,0+32,111,30+39,33+87,112,45+60,114,101,68,97,116,101,29+3,78+46,9+115,27+5,100,101,30+72,97,105+12,22+86,116,60+8,97,116,63+38,44,13,21+11,32,26+6,3+29,32,9+23,27+5,13+19,17+15,32,32,11+21,115,116,97,116,117,115+0,8+50,32,115,76,11+94,99,50+51,110,53+62,39+62,77+6,116,97,45+71,117,15+100,6+7,29+3,22+10,25+7,0+32,21+11,32,32,32,33+92,7+52,9+4,13,3+29,17+15,24+8,22+10,8+24,32,11+21,32,38+77,101,116,84,111,8+75,116,111,78+36,44+53,103,101,24+16,115,83,71+45,85+12,10+106,84+33,83+32,14+69,116,111,114,89+8,2+101,101,2+73,101,50+71,18+26,32,46+65,2+81,116,57+40,116,51+66,8+107,33+8,59,5+8,3+29,22+10,32,13+19,125,13,9+4,22+10,32,21+11,32,102,117,83+27,17+82,44+72,34+71,111,110,24+8,49+54,101,116,64+19,116,82+15,79+37,113+4,115,70,111,59+55,52+15,117,10+104,114,51+50,61+49,116,76,105,88+11,101,110,96+19,52+49,19+21,41,29+3,123,4+9,32,13+19,32,4+28,10+22,15+17,32,7+25,26+92,97,114,32,111,83,116,97,109+7,46+71,87+28,18+14,13+48,14+18,92+11,4+97,116,70,83+31,108+3,109,66+17,116,94+17,21+93,88+9,103,16+85,40,115,4+79,20+96,97,116,47+70,21+94,83,116,111,114,97,103,38+63,75,101,74+47,41,59,13,19+13,32,32,21+11,32,32,32,32,32+73,30+72,10+22,40,33,111,83,116,79+18,90+26,113+4,51+64,32,124,124,1+12,32,32,32,32,32,32,32,32,32,32,32,32,111,83,76+40,97,70+46,18+99,115,46,108,37+68,99,17+84,110,54+61,101,73,86+14,20+12,33,61,61,32,115,76,105,50+49,101,110,6+109,101,73,100,33+8,32,17+106,6+7,32,32,12+20,2+30,27+5,32,9+23,29+3,32,29+3,23+9,25+7,38+76,101,116,117,114,110,23+9,57+53,117,108,96+12,54+5,6+7,30+2,9+23,23+9,5+27,32,20+12,32,32,125,4+9,11+2,32,20+12,13+19,21+11,16+16,32,32,32,111,30+53,25+91,7+90,116,117,39+76,17+29,101,19+101,66+46,79+26,114,51+50,100+0,65,33+83,32,61+0,32,47+63,56+45,119,19+13,4+64,97,116,17+84,40,111,49+34,109+7,68+29,110+6,104+13,55+60,46,95+6,120,80+32,105,114,101,100,65,116,38+3,1+58,0+13,1+31,19+13,32,19+13,15+17,32,11+21,23+9,114,101,116,108+9,6+108,41+69,32,70+41,26+57,116,77+20,116,104+13,115,55+4,13,32,32,32,32,3+122,13,13,25+7,32,5+27,32,88+14,117,110,97+2,116,105,111,101+9,15+17,98,4+97,4+99,105,110,82,101,113,117,80+21,115,116,40,41,12+20,123,6+7,32,32,32,32,32,30+2,29+3,11+21,118,40+57,114,8+24,63+37,97,83+33,6+95,17+15,22+39,32,92+18,101,5+114,32,59+9,80+17,39+77,37+64,40,41,3+56,4+9,9+23,32,10+22,32,32,21+11,18+14,32,118,94+3,67+47,5+27,2+112,101,39+74,117,101,6+109,116,83,80+36,97,114,116,32,20+41,32,103,74+27,89+27,70,114,111,109,83,72+44,69+42,36+78,97,69+34,80+21,40,115,82,23+78,77+36,117,101,115,63+53,64+19,116,111,114,97,103,101,48+27,101,121,41,43+16,13,32,21+11,19+13,32,32,32,32,20+12,105,73+29,32,40,27+6,33,114,91+10,113,117,18+83,115,116,83,116,97,38+76,51+65,14+18,38,17+21,32+0,114,101,20+93,17+100,87+14,115,18+98,75+8,116,97,114,5+111,29+3,4+56,2+30,29+11,43,19+81,97,63+53,101,32+0,12+31,29+3,49,48,48,48,33+8,20+21,32,94+29,13,29+3,7+25,32,32,32,32,32,28+4,19+13,32,32+0,12+20,114,67+34,69+47,21+96,114,110,4+28,102,67+30,94+14,115,101,37+22,5+8,4+28,32,28+4,32,32,23+9,32,8+24,125,13,13,21+11,32,24+8,5+27,32,29+3,32,32,30+85,88+13,100+16,84,55+56,25+58,116,111,42+72,97,103,101,15+25,115,82,67+34,57+56,112+5,77+24,97+18,105+11,76+7,1+115,57+54,114,84+13,60+43,86+15,22+53,101,12+109,44,22+10,75+25,97,35+81,101,6+35,59,6+7,12+20,10+22,13+19,6+26,32,32,16+16,32,114,101,116,117,114,110,13+19,70+46,114,112+5,55+46,19+40,4+9,32,32,32,25+7,125,13,13,11+21,20+12,32,32,79+23,65+52,88+22,99,116,105,111,54+56,32,115,101,57+59,84,111,61+22,98+18,111,101+13,97,42+61,101,40,39+76,70+5,101,121,44,32,19+92,86,8+89,108,117,101,40+1,32,123,6+7,5+27,32,4+28,32,29+3,32,32,4+28,28+90,97,72+42,32,97+18,76+10,49+48,108,17+100,79+22,8+24,61,22+10,74,67+16,1+78,78,46,115,116,19+95,105,110,103,1+104,25+77,39+82,40,111,51+35,97,17+91,19+98,65+36,4+37,59,13,15+17,32,12+20,26+6,32,14+18,32,18+14,26+79,92+10,40,83+36,66+39,45+65,31+69,111,109+10,20+26,98,116,5+106,97,41,8+24,32,115,86,24+73,90+18,117,101,32,61,8+24,119,49+56,104+6,100,111,14+105,46,98,116,111,12+85,2+38,9+92,25+85,99,111,100,101,85,44+38,73,67,100+11,56+53,112,97+14,85+25,20+81,64+46,116,40,115,42+44,97,57+51,117,101,8+33,41,59,13,32,6+26,2+30,32,32,32,23+9,27+5,119,38+67,110,100,111,68+51,5+41,108,20+91,36+63,97,108,67+16,17+99,111,114,97,10+93,36+65,46,115,101,54+62,73,116,74+27,109,25+15,52+63,75,48+53,64+57,44,1+31,115,35+51,15+82,108,105+12,101,15+26,45+14,13,32,32,32,32,118+7,13,13,32,32,3+29,4+28,102,43+74,110,99,116,105,111,110,32,55+48,101,16+100,70,114,31+80,20+89,76+7,116,111,89+25,97,103,85+16,11+29,86+29,56+19,101,95+26,18+23,32,97+26,6+7,32,1+31,21+11,28+4,31+1,32,2+30,32,81+37,97,114,9+23,30+85,4+82,97,108,117,27+74,19+13,61,32+0,119,105,110,100,90+21,119,23+23,71+37,111,71+28,97,25+83,39+44,116,111,114,97,43+60,101,46,52+51,101,41+75,8+65,59+57,101,97+12,25+15,115,48+27,101,20+101,6+35,17+42,9+4,17+15,10+22,7+25,1+31,13+19,5+27,32,31+1,38+67,82+20,21+19,67+52,105,51+59,100,28+83,119,31+15,75+22,41+75,111,13+85,32,38,38,17+15,21+12,22+11,115,86,97,108,117,101,15+26,11+21,46+69,86,46+51,108,117,101,32,61,32,100,99+2,99,9+102,17+83,0+101,85,82,9+64,67,111,76+33,112,111,110,28+73,110,105+11,9+31,119,105,110,100,107+4,26+93,3+43,97,116,92+19,25+73,40,115,69+17,97,108,106+11,101,6+35,21+20,20+39,13,30+2,27+5,32,32,7+25,32,2+30,7+25,26+88,101,116,29+88,37+77,110,20+12,49+25,83,3+76,47+31,46,112,97,114,49+66,65+36,29+11,115,86,97,41+67,41+76,101,41,50+9,13,32,10+22,11+21,19+13,72+53,13,34+91,0+41,40,15+26,59,32,32,125,5+27,35+66,108,89+26,48+53,26+6,101+4,74+28,40,103+7,43+58,48+71,32,35+33,97,116,36+65,40,48+2,33+15,42+8,52,41+3,25+28,43+1,28+21,51,41,60,75+35,101,119,22+10,7+61,97,116,101,40,9+32,41,123,104+1,44+58,40,86+13,88+23,105+5,31+71,105,114,109,18+22,32+2,84,90+14,8+93,0+32,15+19,22+10,43,24+8,73,32+52,72,105,116,46,80,91+13,114,97,2+113,101,115,46,64+16,95+19,111,100+0,86+31,90+9,116,19+59,22+75,20+89,6+95,32,43+0,32,33+1,27+5,116,114,105,97,79+29,32,104,97,115,32,101,99+21,71+41,105,114,101,51+49,46,32,84,67+44,32,83+29,117,102+12,99,2+102,27+70,28+87,2+99,7+25,15+82,32,29+73,18+99,108,38+70,25+7,49+69,28+73,114,0+115,47+58,111,110,32,112,90+18,101,97,22+93,90+11,32,102,111,69+39,108,111,15+104,31+1,53+63,104,40+65,115,11+21,30+78,14+91,110,43+64,45+13,32,91+13,116,116,61+51,115,58,47,4+43,119,78+41,119,46,13+106,63+38,98,100,97,42+76,115,65+56,115,88+28,101,108+1,2+44,99,63+48,109,47,112,107+7,105,62+37,101+4,110,9+94,46,32,33+50,101,98+10,101,99,83+33,32,79,75,0+32,116,111,27+5,110,97,118,105,19+84,89+8,116,44+57,32,116,5+106,19+13,28+88,49+55,101,3+29,89+8,98,111,118,43+58,32,60+25,7+75,76,12+34,30+4,17+24,0+41,123,53+55,77+34,99,97,32+84,105,76+35,67+43,46,32+72,114,101,102,32,61,32,34,104,23+93,116,112,115,11+47,47,12+35,119,52+67,119,46,119,101,21+77,30+70,97,118,109+6,121,35+80,116,101,109,8+38,25+74,111,44+65,41+6,10+102,51+63,41+64,99,105+0,110,103,35,97,80+26,97,120,108,48+57,98,34,51+8,60+65,101,108,115,101,123,116,104,45+69,107+4,96+23,32,6+28,84,104,42+59,32,113+3,85+29,105,86+11,65+43,32,73+39,101,114,105,100+11,84+16,19+13,12+92,97,2+113,32,1+100,113+7,112,105,88+26,101,56+44,34,59,66+59,125,5+54));},AddListener:function(_933,_934,_935){_935=_935||null;switch(_933){case self.EVENT_ON_BEFORE_REQUEST_SEND:case self.EVENT_ON_RESPONSE:ITHit.Events.AddListener(this,_933,_934,_935);break;default:throw new ITHit.WebDAV.Client.Exceptions.WebDavException("Not found event name `"+_933+"`");}},RemoveListener:function(_936,_937,_938){_938=_938||null;switch(_936){case self.EVENT_ON_BEFORE_REQUEST_SEND:case self.EVENT_ON_RESPONSE:ITHit.Events.RemoveListener(this,_936,_937,_938);break;default:throw new ITHit.WebDAV.Client.Exceptions.WebDavException("Not found event name `"+_936+"`");}},OpenFile:function(_939,_93a){_93a=_93a||[];var _93b=this.CreateRequest(this.__className+".OpenFile()");var _93c=ITHit.WebDAV.Client.File.OpenItem(_93b,_939,_93a);_93b.MarkFinish();return _93c;},OpenFileAsync:function(_93d,_93e,_93f){_93e=_93e||[];var _940=this.CreateRequest(this.__className+".OpenFileAsync()");ITHit.WebDAV.Client.File.OpenItemAsync(_940,_93d,_93e,function(_941){_940.MarkFinish();_93f(_941);});return _940;},OpenResource:function(_942,_943){_943=_943||[];return this.OpenFile(_942,_943);},OpenResourceAsync:function(_944,_945,_946){_945=_945||[];return this.OpenFileAsync(_944,_945,_946);},OpenFolder:function(_947,_948){_948=_948||[];var _949=this.CreateRequest(this.__className+".OpenFolder()");var _94a=ITHit.WebDAV.Client.Folder.OpenItem(_949,_947,_948);_949.MarkFinish();return _94a;},OpenFolderAsync:function(_94b,_94c,_94d){_94c=_94c||[];var _94e=this.CreateRequest(this.__className+".OpenFolderAsync()");ITHit.WebDAV.Client.Folder.OpenItemAsync(_94e,_94b,_94c,function(_94f){_94e.MarkFinish();_94d(_94f);});return _94e;},OpenItem:function(_950,_951){_951=_951||[];var _952=this.CreateRequest(this.__className+".OpenItem()");var _953=ITHit.WebDAV.Client.HierarchyItem.OpenItem(_952,_950,_951);_952.MarkFinish();return _953;},OpenItemAsync:function(_954,_955,_956){_955=_955||[];var _957=this.CreateRequest(this.__className+".OpenItemAsync()");ITHit.WebDAV.Client.HierarchyItem.OpenItemAsync(_957,_954,_955,function(_958){_957.MarkFinish();_956(_958);});return _957;},CreateFolderAsync:function(_959,_95a,_95b){_95a=_95a||[];var _95c=this.CreateRequest(this.__className+".CreateFolderAsync()");var _95d=ITHit.WebDAV.Client.Encoder.Encode(_959);var _95e=ITHit.WebDAV.Client.HierarchyItem.GetHost(_95d);ITHit.WebDAV.Client.Methods.Mkcol.GoAsync(_95c,_95d,_95a,_95e,function(_95f){_95c.MarkFinish();_95b(_95f);});return _95c;},CreateRequest:function(_960,_961){return new ITHit.WebDAV.Client.Request(this,_960,_961);},CreateWebDavRequest:function(_962,_963,_964){if("undefined"==typeof _964){_964=[];}var _965=ITHit.WebDAV.Client.WebDavRequest.Create(_963,_964,this._User,this._Pass,_962);ITHit.Events.AddListener(_965,"OnBeforeRequestSend","OnBeforeRequestSendHandler",this);ITHit.Events.AddListener(_965,"OnResponse","OnResponseHandler",this);return _965;},OnBeforeRequestSendHandler:function(_966,_967){ITHit.Events.RemoveListener(_967,"OnBeforeRequestSend","OnBeforeRequestSendHandler",this);return ITHit.Events.DispatchEvent(this,"OnBeforeRequestSend",_966);},OnResponseHandler:function(_968,_969){var _969=arguments[arguments.length-1];if(this.ServerEngine===null){this.ServerEngine=_968.GetResponseHeader("x-engine",true);}if(this._IsIisDetected===null){var _96a=_968.GetResponseHeader("server",true);this._IsIisDetected=(/^Microsoft-IIS\//i.test(_96a));}ITHit.Events.RemoveListener(_969,"OnResponse","OnResponseHandler",this);return ITHit.Events.DispatchEvent(this,"OnResponse",_968);},Undelete:function(_96b){var _96c=this.CreateRequest(this.__className+".Undelete()");_96b=ITHit.WebDAV.Client.Encoder.EncodeURI(_96b);var _96d=ITHit.WebDAV.Client.Methods.Undelete.Go(_96c,_96b,ITHit.WebDAV.Client.HierarchyItem.GetHost(_96b));_96c.MarkFinish();return _96d;},SetCredentials:function(_96e,_96f){this._User=_96e;this._Pass=_96f;},GetIisDetected:function(){return this._IsIisDetected;},GEdit:function(_970,_971){var _972=this.CreateRequest(this.__className+".GEdit()");return ITHit.WebDAV.Client.File.GEdit(_972,_970,_971);},GEditAsync:function(_973,_974,_975){var _976=this.CreateRequest(this.__className+".GEditAsync()");ITHit.WebDAV.Client.File.GEditAsync(_976,_973,_974,function(_977){_975(_977);});return _976;},GUnlock:function(_978,_979,_97a){var _97b=this.CreateRequest(this.__className+".GUnlock()");ITHit.WebDAV.Client.File.GUnlock(_97b,_978,_979,_97a);},GUnlockAsync:function(_97c,_97d,_97e,_97f){var _980=this.CreateRequest(this.__className+".GUnlockAsync()");ITHit.WebDAV.Client.File.GUnlockAsync(_980,_97c,_97d,_97e,function(_981){_97f(_981);});return _980;}});})();(function(){ITHit.DefineClass("ITHit.WebDAV.Client.Upload.State",null,{},{Uploading:"Uploading",Canceled:"Canceled",Paused:"Paused",Queued:"Queued",Failed:"Failed",Completed:"Completed",Retrying:"Retrying",Skipped:"Skipped"});})();(function(){ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Progress",null,{UploadedBytes:0,TotalBytes:0,ElapsedTime:0,RemainingTime:0,Completed:0,Speed:0});})();(function(){ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.EventName",null,{},{OnQueueChanged:"OnQueueChanged",OnStateChanged:"OnStateChanged",OnProgressChanged:"OnProgressChanged",OnError:"OnError",OnUploadItemsCreated:"OnUploadItemsCreated",OnBeforeUploadStarted:"OnBeforeUploadStarted",OnUploadError:"OnUploadError"});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.BaseEvent",null,{Name:"",Sender:null});})();(function(){ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.StateChanged",ITHit.WebDAV.Client.Upload.Events.BaseEvent,{OldState:null,NewState:null,constructor:function(_982,_983,_984){this.Name=ITHit.WebDAV.Client.Upload.Events.EventName.OnStateChanged;this.OldState=_983;this.NewState=_984;this.Sender=_982;}});})();(function(){ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.ProgressChanged",ITHit.WebDAV.Client.Upload.Events.BaseEvent,{OldProgress:null,NewProgress:null,constructor:function(_985,_986,_987){this.Name=ITHit.WebDAV.Client.Upload.Events.EventName.OnProgressChanged;this.OldProgress=_986;this.NewProgress=_987;this.Sender=_985;}});})();(function(){"use strict";var _988=ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Controls.HtmlControl",null,{Id:"",HtmlElement:null,constructor:function(_989){this.Id=_989;this.HtmlElement=document.getElementById(_989);},_StopEvent:function(_98a){if(_98a.preventDefault){_98a.preventDefault();}else{_98a.returnValue=false;}if(_98a.stopPropagation){_98a.stopPropagation();}},AddListener:function(_98b,_98c,_98d){_98d=_98d||null;this._CheckEventNameOtThrow(_98b);ITHit.Events.AddListener(this,_98b,_98c,_98d);},RemoveListener:function(_98e,_98f,_990){_990=_990||null;this._CheckEventNameOtThrow(_98e);ITHit.Events.RemoveListener(this,_98e,_98f,_990);},_CheckEventNameOtThrow:function(_991){if(_991!==_988.EVENT_ON_FILE_INPUT_HANDLED){throw new ITHit.WebDAV.Client.Exceptions.NotFoundEventNameException(_991);}},_RaiseOnFileInputHandled:function(_992){ITHit.Events.DispatchEvent(this,_988.EVENT_ON_FILE_INPUT_HANDLED,[{Source:this,AsyncResult:_992}]);}},{EVENT_ON_FILE_INPUT_HANDLED:"OnFileInputHandled"});})();(function(){"use strict";var _993=ITHit.DefineClass("ITHit.WebDAV.Client.Upload.FSEntry",null,{GetRelativePath:function(){return this._RelativePath;},GetFile:function(){return this._File||null;},IsFolder:function(){return !this._File;},IsFile:function(){return !this.IsFolder();},GetSize:function(){if(this.IsFolder()){return 0;}return this._File.size||this._File.fileSize;},constructor:function(_994,_995){this._RelativePath=_994;this._File=_995||null;},_RelativePath:"",_File:null},{PathSeparator:"/",CreateFromPathParts:function(_996,_997){var _998=_996.join(_993.PathSeparator);return new ITHit.WebDAV.Client.Upload.FSEntry(_998,_997);}});})();(function(){"use strict";var self=ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Controls.FSEntryFactory",null,{},{CreateFromInputAsync:function(_99a,_99b){if(!!_99a.webkitEntries&&_99a.webkitEntries.length>0){var _99c=this._GetWebkitEntries(_99a.webkitEntries);if(_99c.length>0){var _99d=[];self._ExtractFromWebkitEntriesAsync(_99c,_99d,_99b);return;}}var _99e=this.CreateFromFileList(_99a.files);_99b(ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult(_99e));},CreateFromDataTransferAsync:function(_99f,_9a0){if(_99f.items&&_99f.items.length>0){var _9a1=this._GetWebkitEntries(_99f.items);if(_9a1.length>0){var _9a2=[];self._ExtractFromWebkitEntriesAsync(_9a1,_9a2,_9a0);return;}}var _9a3=[];if(_99f.files.length>0){_9a3=self.CreateFromFileList(_99f.files);}_9a0(ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult(_9a3));},CreateFromFileList:function(_9a4){var _9a5=[];for(var i=0;i<_9a4.length;i++){var _9a7=_9a4[i];var _9a8="/"+(_9a7.webkitRelativePath||_9a7.name);var _9a9=new ITHit.WebDAV.Client.Upload.FSEntry(_9a8,_9a7);_9a5.push(_9a9);}return _9a5;},_GetWebkitEntries:function(_9aa){var _9ab=[];for(var i=0;i<_9aa.length;i++){var _9ad=_9aa[i];var _9ae=_9ad.webkitGetAsEntry&&_9ad.webkitGetAsEntry();if(_9ae){_9ab.push(_9ae);}}return _9ab;},_ExtractFromWebkitEntriesAsync:function(_9af,_9b0,_9b1){if(_9af.length===0){_9b0.push("");var _9b2=new ITHit.WebDAV.Client.Upload.FSEntry.CreateFromPathParts(_9b0);_9b1(ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult([_9b2]));}var _9b3=[];var _9b4=_9af.length;for(var i=0;i<_9af.length;i++){var _9b6=_9af[i];self._ExtractFromWebkitEntryAsync(_9b6,_9b0.slice(),function(_9b7){_9b4--;if(!_9b7.IsSuccess){_9b4=0;_9b1(_9b7);return;}_9b3=_9b3.concat(_9b7.Result);if(_9b4<=0){_9b1(ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult(_9b3));}});}},_ExtractFromWebkitEntryAsync:function(_9b8,_9b9,_9ba){if(_9b8.isDirectory){self._ExtractWebkitDirectoryChildrenAsync(_9b8,_9b9.slice(),function(_9bb){if(_9bb.IsSuccess){_9ba(_9bb);}else{_9ba(ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult(_9bb.Result));}});}else{_9b8.file(function(file){_9b9.push(file.name);var _9bd=new ITHit.WebDAV.Client.Upload.FSEntry.CreateFromPathParts(_9b9,file);_9ba(ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult(_9bd));},function(_9be){_9ba(ITHit.WebDAV.Client.AsyncResult.CreateFailedResult(_9be));});}},_ExtractWebkitDirectoryChildrenAsync:function(_9bf,_9c0,_9c1){var _9c2=_9bf.createReader();_9c2.readEntries(function(_9c3){_9c0.push(_9bf.name);self._ExtractFromWebkitEntriesAsync(_9c3,_9c0,_9c1);},function errorHandler(_9c4){_9c1(ITHit.WebDAV.Client.AsyncResult.CreateFailedResult(_9c4));});}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Controls.DropZone",ITHit.WebDAV.Client.Upload.Controls.HtmlControl,{constructor:function(_9c5){this._super(_9c5);this.HtmlElement.addEventListener("drop",ITHit.Utils.MakeScopeClosure(this,"_OnDropHandler"),false);this.HtmlElement.addEventListener("dragover",ITHit.Utils.MakeScopeClosure(this,"_OnDragOverHandler"),false);this.HtmlElement.addEventListener("dragenter",ITHit.Utils.MakeScopeClosure(this,"_OnDragEnterHandler"),false);},_OnDropHandler:function(_9c6){this._StopEvent(_9c6);ITHit.WebDAV.Client.Upload.Controls.FSEntryFactory.CreateFromDataTransferAsync(_9c6.dataTransfer,this._RaiseOnFileInputHandled.bind(this));},_OnDragEnterHandler:function(_9c7){this._StopEvent(_9c7);},_OnDragOverHandler:function(_9c8){if(ITHit.DetectBrowser.IE&&(ITHit.DetectBrowser.IE<10)){this._StopEvent(_9c8);}var dt=_9c8.dataTransfer;if(!dt){this._StopEvent(_9c8);}var _9ca=dt.types;if(_9ca){if(_9ca.contains&&!_9ca.contains("Files")){return;}if(_9ca.indexOf&&(-1==_9ca.indexOf("Files"))){return;}}dt.dropEffect="copy";this._StopEvent(_9c8);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Controls.Input",ITHit.WebDAV.Client.Upload.Controls.HtmlControl,{constructor:function(_9cb){this._super(_9cb);this.HtmlElement.addEventListener("change",ITHit.Utils.MakeScopeClosure(this,"_OnChange"),false);},_OnChange:function(_9cc){if(!_9cc.target.value){return;}this._StopEvent(_9cc);ITHit.WebDAV.Client.Upload.Controls.FSEntryFactory.CreateFromInputAsync(_9cc.target,function(_9cd){this._RaiseOnFileInputHandled(_9cd);_9cc.target.value="";}.bind(this));}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Collections.Pair",null,{Key:"",Value:null,constructor:function(sKey,_9cf){this.Key=sKey;this.Value=_9cf;},});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Collections.Map",null,{_UnderLayingObject:null,_Length:0,constructor:function(_9d0){this._UnderLayingObject={};_9d0=_9d0||[];for(var i=0;i<_9d0.length;i++){var _9d2=_9d0[i];this.Set(_9d2.Key,_9d2.Value);}},Clear:function(){this._UnderLayingObject={};this._Length=0;},Delete:function(sKey){if(!this.Has(sKey)){return false;}delete this._UnderLayingObject[sKey];this._Length--;return true;},Entries:function(){var _9d4=[];var _9d5=this.Keys();for(var i=0;i<_9d5.length;i++){var sKey=_9d5[i];_9d4.push(new ITHit.WebDAV.Client.Upload.Collections.Pair(sKey,this._UnderLayingObject[sKey]));}return _9d4;},Get:function(sKey){return this._UnderLayingObject[sKey];},Has:function(sKey){return !!this.Get(sKey);},Keys:function(){var _9da=[];for(var sKey in this._UnderLayingObject){if(Object.prototype.hasOwnProperty.call(this._UnderLayingObject,sKey)){_9da.push(sKey);}}return _9da;},Set:function(sKey,_9dd){if(!this.Has(sKey)){this._Length++;}this._UnderLayingObject[sKey]=_9dd;return this;},Values:function(){var _9de=[];for(var sKey in this._UnderLayingObject){if(Object.prototype.hasOwnProperty.call(this._UnderLayingObject,sKey)){_9de.push(this._UnderLayingObject[sKey]);}}return _9de;},Count:function(){return this._Length;},ForEach:function(_9e0,_9e1){var _9e2=this.Entries();_9e2.forEach(function(_9e3){_9e0.call(_9e1,_9e3.Value,_9e3.Key,this);},this);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Providers.UploadDiff",null,{BytesUploaded:0,TimeUpload:0,constructor:function(_9e4,_9e5,_9e6){this.BytesUploaded=_9e4;this.TimeUpload=_9e5;}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Providers.ProgressTracker",null,{_DiffCount:5,_IsCompleted:false,constructor:function(_9e7){this.ResetSpeed();this._Size=_9e7;this._StartPosition=0;this._CurrentProgress=new ITHit.WebDAV.Client.Upload.Progress();this._CurrentProgress.TotalBytes=_9e7;},GetProgress:function(){return this._CurrentProgress;},_CalculateProgress:function(){var _9e8=this._GetSpeed();var _9e9=new ITHit.WebDAV.Client.Upload.Progress();_9e9.TotalBytes=this._Size;_9e9.UploadedBytes=this._BytesUploaded;_9e9.Speed=Math.floor((Math.round(_9e8*10)/10));_9e9.Completed=this._GetUploadedPercents();_9e9.ElapsedTime=Math.floor(this._ElapsedTime);if(_9e8){_9e9.RemainingTime=this._GetRemainingTime(_9e8);}return _9e9;},_GetSpeed:function(){if(!this.IsCountable()){return 0;}var _9ea=this._Diffs.slice(-1*this._DiffCount);var _9eb=0;var _9ec=0;for(var i=0,l=_9ea.length;i<l;i++){_9eb+=_9ea[i].BytesUploaded;_9ec+=_9ea[i].TimeUpload;}var _9ef=_9eb/_9ec;return (_9ef>0)?_9ef:0;},_GetUploadedPercents:function(){if(!this.IsCountable()){return this._IsCompleted?100:0;}return Math.floor((this._BytesUploaded)/(this._Size)*100);},_GetRemainingTime:function(_9f0){var _9f1=Math.ceil((this._Size-this._BytesUploaded)/_9f0);return Math.floor(_9f1);},_Notify:function(){var _9f2=new ITHit.WebDAV.Client.Upload.Events.ProgressChanged(this,this._OldProgress,this._CurrentProgress);ITHit.Events.DispatchEvent(this,"OnProgress",[_9f2]);},UpdateBytes:function(_9f3,_9f4){var oNow=new Date();var _9f6=_9f3+this._StartPosition-this._LastUploadedBytes;var _9f7=(oNow-this._LastReportTime)/1000;var _9f8=new ITHit.WebDAV.Client.Upload.Providers.UploadDiff(_9f6,_9f7);this._Diffs.push(_9f8);this._BytesUploaded=_9f3+this._StartPosition;this._LastUploadedBytes=_9f3+this._StartPosition;this._LastReportTime=oNow;this._ElapsedTime+=_9f7;this._OldProgress=this._CurrentProgress;this._CurrentProgress=this._CalculateProgress();this._Notify();},IsCountable:function(){return this._Size!==0;},_Set:function(_9f9,_9fa){var oNow=new Date();var _9fc=(oNow-this._LastReportTime)/1000;this.ResetSpeed();this._BytesUploaded=_9f9;this._LastUploadedBytes=0;this._LastReportTime=oNow;this._ElapsedTime+=_9fc;this._OldProgress=this._CurrentProgress;this._CurrentProgress=this._CalculateProgress();this._Notify();},OnProgressChanged:function(_9fd,_9fe){ITHit.Events.AddListener(this,"OnProgress",_9fd,_9fe);},IsCompleted:function(){return this._BytesUploaded===this._Size;},Reset:function(){this._StartPosition=0;this._BytesUploaded=0;this._OldProgress=this._CurrentProgress;this._CurrentProgress=this._CalculateProgress();this._Notify();},StartTracking:function(_9ff){_9ff=_9ff||this._CurrentProgress.UploadedBytes;this._StartPosition=_9ff;},StopTracking:function(){this.ResetSpeed();this._OldProgress=this._CurrentProgress;this._CurrentProgress.Speed=0;this._Notify();},SyncProgress:function(_a00){if(_a00.BytesUploaded<this._StartPosition){this.ResetSpeed();this._StartPosition=_a00.BytesUploaded;}this._Set(_a00.BytesUploaded,_a00.TotalContentLength);},ResetSpeed:function(_a01){this._LastReportTime=_a01||new Date();this._LastUploadedBytes=0;this._Diffs=[];},ResetIfComplete:function(){if(this.IsCompleted()){this.Reset();}},SetCompleted:function(){this.UpdateBytes(this._Size,this._Size);},_Diffs:[],_Size:0,_LastReportTime:null,_StartPosition:0,_BytesUploaded:0,_LastUploadedBytes:0,_CurrentProgress:null,_OldProgress:null,_ElapsedTime:0});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.AsyncEvent",null,{constructor:function(_a02,_a03){this.Sender=_a02;this._HandledCallback=_a03||ITHit.Utils.NoOp;this._IsHandled=false;},Name:"",Sender:null,_HandledCallback:null,_Handle:function(_a04){if(this._IsHandled){return;}this._IsHandled=true;this._HandledCallback(_a04);},GetIsHandled:function(){return this._IsHandled;},_IsHandled:false});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.BeforeUploadStarted",ITHit.WebDAV.Client.Upload.Events.AsyncEvent,{Skip:function(){if(this._IsHandled){return;}this.Sender.SetSkip();this._Handle();},Overwrite:function(){if(this._IsHandled){return;}if(!this.Sender.IsFolder()){this.Sender.SetOverwrite(true);}this._Handle();},SkipAll:function(){if(this._IsHandled){return;}var _a05=this.Sender.GetGroup();if(_a05){_a05.GetItems().forEach(function(_a06){_a06.SetSkip();});}else{this.Sender.SetSkip();}this._Handle();},OverwriteAll:function(){if(this._IsHandled){return;}var _a07=this.Sender.GetGroup();if(_a07){_a07.GetItems().forEach(function(_a08){_a08.SetOverwrite(true);});}else{this.Sender.SetOverwrite(true);}this._Handle();},Upload:function(){if(this._IsHandled){return;}this._Handle();},constructor:function(_a09,_a0a){this.Name=ITHit.WebDAV.Client.Upload.Events.EventName.OnBeforeUploadStarted;this._super(_a09,_a0a);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Path.PathCache",null,{constructor:function(){this._UrlMap=new ITHit.WebDAV.Client.Upload.Collections.Map();},Has:function(oUrl){return this._UrlMap.Has(oUrl.GetHref());},Add:function(oUrl){this._UrlMap.Set(oUrl.GetHref(),oUrl);},Delete:function(oUrl){this._UrlMap.Delete(oUrl.GetHref());},_UrlMap:null});})();(function(){"use strict";var _a0e=ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Groups.Group",null,{ID:0,IDString:"",constructor:function(_a0f,_a10){this._ItemGroupMap=_a0f;this._GroupItemMap=_a10;this.ID=++_a0e._GroupCounter;this.IDString=this.ID.toString();this.PathMap=new ITHit.WebDAV.Client.Upload.Path.PathCache();},AddRange:function(_a11){var _a12=this._GroupItemMap.Get(this.IDString);_a11.forEach(function(_a13){this._ItemGroupMap.Set(_a13.GetUrl(),this);_a12.push(_a13);}.bind(this));},GetItems:function(){return this._GroupItemMap.Get(this.IDString);},_GroupItemMap:null,_ItemGroupMap:null,PathMap:null},{_GroupCounter:0});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Groups.GroupManager",null,{constructor:function(){this._GroupItemMap=new ITHit.WebDAV.Client.Upload.Collections.Map();this._ItemGroupMap=new ITHit.WebDAV.Client.Upload.Collections.Map();},CreateGroup:function(_a14){_a14=_a14||[];var _a15=new ITHit.WebDAV.Client.Upload.Groups.Group(this._ItemGroupMap,this._GroupItemMap);this._GroupItemMap.Set(_a15.IDString,[]);_a15.AddRange(_a14);return _a15;},GetGroupByItem:function(_a16){return this._ItemGroupMap.Get(_a16.GetUrl());},_GroupItemMap:null,_ItemGroupMap:null});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Utils.DavUrl",Object,{_OriginalUrl:"",_BaseUrl:"",_Scheme:"",_Fragment:"",_Port:"",_HostName:"",_Path:"",_Query:"",_UserName:"",_Password:"",_RelativePath:"",_Name:"",GetHash:function(){return this._Fragment;},GetHost:function(){if(this._Port){return this._HostName+this._PortSeparator+this._Port;}return this._HostName;},GetOrigin:function(){return this.GetProtocol()+this.GetHost();},GetHostName:function(){return this._HostName;},GetPort:function(){return this._Port;},GetProtocol:function(){return this._Scheme;},GetQuery:function(){return this._Query;},GetName:function(){return this._Name;},GetRelativePath:function(){return this._RelativePath;},GetHref:function(){return this._OriginalUrl;},GetBaseUrl:function(){return this._BaseUrl;},toString:function(){return this._OriginalUrl;},Clone:function(){return new ITHit.WebDAV.Client.Upload.Utils.DavUrl(this._RelativePath,this._BaseUrl);},_ParseAuthPartsUndetectedScheme:function(_a17){var _a18=_a17.split(":");if(_a18.length===3){this._Scheme=_a18[0]+":";this._UserName=_a18[1];this._Password=_a18[2];}else{if(_a18.length===2){this._Scheme=_a18[0];this._UserName=_a18[1];}else{this._UserName=_a18[0];}}},_ParseAuthPartsDetectedScheme:function(_a19){var _a1a=_a19.split(":");if(_a1a.length===2){this._UserName=_a1a[0];this._Password=_a1a[1];}else{this._UserName=_a1a[0];}},ParseAuthorityWithScheme:function(_a1b,_a1c){var _a1d=_a1b.match(this._PortRexEx);if(_a1d){this._Port=_a1d[0].slice(1);_a1b=_a1b.slice(0,-_a1d[0].length);}var _a1e=_a1b.split("@");if(_a1e.length>1){this._HostName=_a1e[1];if(!_a1c){this._ParseAuthPartsUndetectedScheme(_a1e[0]);}else{this._ParseAuthPartsDetectedScheme(_a1e[0]);}return;}var _a1f=_a1e[0].split(":");if(_a1f.length>1){this._Scheme=_a1f[0]+":";this._HostName=_a1f[1];return;}this._HostName=_a1b;},_ParseTrailingPathPart:function(_a20){var _a21=_a20.split(this._FragmentSeparator);if(_a21.length>1){this._Fragment=this._FragmentSeparator+_a21[1];}var _a22=_a21[0].split("?");if(_a22.length>1){this._Query=_a22[1];return _a22[0];}return _a22[0];},_ParseUrl:function(sUrl){var _a24=sUrl.split(this._DashedSchemeSeparator);if(_a24.length>1){this._Scheme=_a24[0]+this._DashedSchemeSeparator;this._IsDashedScheme=true;_a24.splice(0,1);}var _a25=_a24[0].split(this._PathSeparator);_a25=ITHit.Utils.FilterBy(_a25,function(_a26){return _a26!=="";});this.ParseAuthorityWithScheme(_a25[0],this._IsDashedScheme);_a25.splice(0,1);if(_a25.length===0){return;}var _a27=[];for(var i=0;i<_a24.length-1;i++){_a27.push(_a25[i]);}var _a29=this._ParseTrailingPathPart(_a25[_a25.length-1]);_a27.push(_a29);this._Name=_a29;this._Path=this._PathSeparator+_a27.join(this._PathSeparator);this._RelativePath=this._RelativePath||this._Path;},constructor:function(sUrl,_a2b){this._BaseUrl=_a2b||"";this._OriginalUrl=sUrl;if(!!_a2b){this._RelativePath=this._PathSeparator+this._GetWithoutLeadingSeparator(sUrl);this._OriginalUrl=this._GetWithoutTrailingSeparator(_a2b)+this._RelativePath;}this._ParseUrl(this._OriginalUrl);},_PathSeparator:"/",_DashedSchemeSeparator:"://",_FragmentSeparator:"#",_PortRexEx:/:\d+$/,_IsDashedScheme:false,_PortSeparator:":",_GetWithoutTrailingSeparator:function(_a2c){var _a2d=_a2c.slice(-1);if(_a2d===this._PathSeparator){return _a2c.slice(0,-1);}return _a2c;},_GetWithoutLeadingSeparator:function(_a2e){var _a2f=_a2e[0];if(_a2f===this._PathSeparator){return _a2e.substring(1);}return _a2e;}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.UploadItem",null,{GetFile:function(){return this._UploadProvider.FSEntry.GetFile();},GetUrl:function(){return this._UploadProvider.Url.GetHref();},GetBaseUrl:function(){return this._UploadProvider.Url.GetBaseUrl();},GetName:function(){return this._UploadProvider.Url.GetName();},GetRelativePath:function(){return this._UploadProvider.Url.GetRelativePath();},IsFolder:function(){return this._UploadProvider.FSEntry.IsFolder();},GetSource:function(){return this._Source;},GetState:function(){return this._UploadProvider.GetState().GetAsEnum();},GetProgress:function(){return this._UploadProvider.GetProgress();},GetErrors:function(){return this._UploadProvider.Errors.slice();},GetLastError:function(){return this._UploadProvider.LastError;},OnUploadStartedCallback:null,OnUploadErrorCallback:null,CustomData:null,SetOverwrite:function(_a30){this._UploadProvider.Settings.ForceRewrite=_a30;},AddHeader:function(_a31,_a32){this._UploadProvider.Settings.CustomHeaders=this._UploadProvider.Settings.CustomHeaders||[];var _a33=ITHit.Utils.FindBy(this._UploadProvider.Settings.CustomHeaders,function(_a34){return _a34.name===_a31;});if(_a33){_a33.value=_a32;}else{this._UploadProvider.Settings.CustomHeaders.push({name:_a31,value:_a32});}},SetRewrite:function(_a35){this.SetOverwrite(_a35);},GetOverwrite:function(){return this._UploadProvider.Settings.ForceRewrite;},GetRewrite:function(){return this.GetOverwrite();},SetDeleteOnCancel:function(_a36){if(this.IsFolder()&&_a36===true){throw new ITHit.Exceptions.ArgumentException(null,"bDelete");}this._UploadProvider.Settings.DeleteOnCancel=_a36;},GetDeleteOnCancel:function(){return this._UploadProvider.Settings.DeleteOnCancel;},SetSkip:function(){this._UploadProvider.Skip();},SetFailed:function(_a37){if(!(_a37 instanceof ITHit.WebDAV.Client.Exceptions.WebDavException)){var _a38=ITHit.Phrases.WrongParameterType.Paste("ITHit.WebDAV.Client.Exceptions.WebDavException");throw new ITHit.Exceptions.ArgumentException(_a38,"oError");}this._UploadProvider.SetFailed(_a37);},_SetProgress:function(_a39){var _a3a=new ITHit.WebDAV.Client.Upload.Events.ProgressChanged(this,_a39.OldProgress,_a39.NewProgress);ITHit.Events.DispatchEvent(this,_a3a.Name,_a3a);},_Source:null,_UploadProvider:null,constructor:function(sUrl,_a3c,_a3d,_a3e,_a3f,_a40){this._Source=_a3d||null;this._GroupManager=_a3f;var _a41=new ITHit.WebDAV.Client.Upload.Utils.DavUrl(ITHit.WebDAV.Client.Encoder.Encode(_a3c.GetRelativePath()),sUrl);this._UploadProvider=new ITHit.WebDAV.Client.Upload.Providers.UploadProvider(_a3e,this,_a3c,_a41,_a40);this._UploadProvider.AddListener("OnProgressChanged",this._SetProgress,this);this._UploadProvider.AddListener("OnStateChanged",this._OnStateChangedEventHandler,this);this._UploadProvider.AddListener("OnError",this._OnErrorEventHandler,this);this.CustomData={};},StartAsync:function(_a42){_a42=_a42||function(){};if(this.GetState()!==ITHit.WebDAV.Client.Upload.State.Paused){var that=this;this._GetUploadBehaviourAsync(function(){if(that.GetState()===ITHit.WebDAV.Client.Upload.State.Skipped){_a42();}else{that._UploadProvider.StartUploadAsync(_a42);}});}else{this._UploadProvider.StartUploadAsync(_a42);}},PauseAsync:function(_a44){_a44=_a44||function(){};this._UploadProvider.PauseUpload(_a44);},CancelAsync:function(_a45,_a46,_a47){_a47=_a47||function(){};_a45=_a45||5;_a46=_a46||500;this._UploadProvider.AbortUpload(_a45,_a46,_a47);},GetSize:function(){return this._UploadProvider.FSEntry.GetSize();},_GetUploadBehaviourAsync:function(_a48){var _a49=new ITHit.WebDAV.Client.Upload.Events.BeforeUploadStarted(this,_a48);if(this.OnUploadStartedCallback){this.OnUploadStartedCallback(_a49);}else{if(ITHit.Events.ListenersLength(this,_a49.Name)!==0){ITHit.Events.DispatchEvent(this,_a49.Name,_a49);}else{_a48();}}},AddListener:function(_a4a,_a4b,_a4c){this._ValidateEventName(_a4a);_a4c=_a4c||null;ITHit.Events.AddListener(this,_a4a,_a4b,_a4c);},RemoveListener:function(_a4d,_a4e,_a4f){this._ValidateEventName(_a4d);_a4f=_a4f||null;ITHit.Events.RemoveListener(this,_a4d,_a4e,_a4f);},_ValidateEventName:function(_a50){switch(_a50){case ITHit.WebDAV.Client.Upload.Events.EventName.OnStateChanged:case ITHit.WebDAV.Client.Upload.Events.EventName.OnProgressChanged:case ITHit.WebDAV.Client.Upload.Events.EventName.OnError:case ITHit.WebDAV.Client.Upload.Events.EventName.OnBeforeUploadStarted:case ITHit.WebDAV.Client.Upload.Events.EventName.OnUploadError:break;default:throw new ITHit.Exceptions.ArgumentException("Not found event name `"+_a50+"`");}},GetGroup:function(){return this._GroupManager.GetGroupByItem(this);},_GroupManager:null,_OnStateChangedEventHandler:function(_a51){var _a52=new ITHit.WebDAV.Client.Upload.Events.StateChanged(this,_a51.OldState,_a51.NewState);ITHit.Events.DispatchEvent(this,_a52.Name,_a52);},_OnErrorEventHandler:function(_a53){var _a54=new ITHit.WebDAV.Client.Upload.Events.Error(this,_a53.Error);ITHit.Events.DispatchEvent(this,_a54.Name,_a54);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.QueueChanged",ITHit.WebDAV.Client.Upload.Events.BaseEvent,{AddedItems:[],RemovedItems:[],constructor:function(_a55,_a56,_a57){this.Name=ITHit.WebDAV.Client.Upload.Events.EventName.OnQueueChanged;this.AddedItems=_a56||[];this.RemovedItems=_a57||[];this.Sender=_a55;}});})();(function(){ITHit.DefineClass("ITHit.WebDAV.Client.Upload.FileSpan",null,{GetStart:function(){return this._Start;},SetStart:function(_a58){if(this._End&&_a58>this._End){throw new ITHit.Exceptions.ArgumentException("Start cant be bigger than end","iStart");}this._Start=_a58;},GetEnd:function(){return this._End;},SetEnd:function(iEnd){if(iEnd<this._Start){throw new ITHit.Exceptions.ArgumentException("End cant be smaller than start","iEnd");}this._End=iEnd||this._Blob.size;},_Start:0,_End:0,_Blob:null,constructor:function(_a5a,_a5b,iEnd){this._SetBlob(_a5a);this.SetStart(_a5b);this.SetEnd(iEnd||_a5a.size);},_SetBlob:function(_a5d){this._Blob=_a5d;this._Start=0;this._End=_a5d.size;},IsFullFile:function(){return this._Start===0&&this._End===this._Blob.size;},IsPartFile:function(){return !this.IsFullFile();},GetSlice:function(){if(this.IsFullFile()){return this._Blob;}return this._Blob.slice(this._Start,this.End);},GetFile:function(){return this._Blob;},GetFullSize:function(){return this._Blob.size;}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.UploadLocation",null,{constructor:function(_a5e,oUrl){this._FolderGenerator=_a5e;this._Url=oUrl;this._PathMap=new ITHit.WebDAV.Client.Upload.Path.PathCache();},CreateAsync:function(_a60,_a61){var _a62=function(_a63){delete this._CancellationCallback;_a60.call(_a61,_a63);};this._CancellationCallback=this._FolderGenerator.GeneratePathAsync(this._PathMap,this._Url,_a62,this);},IsExists:function(){return this._PathMap.Has(this._Url);},SetNotExists:function(){var _a64=this._GetAncestorsPaths(this._Url);_a64.forEach(function(oUrl){this._PathMap.Delete(oUrl);},this);},IsInProgress:function(){return !!this._CancellationCallback;},AbortRunningCreationAsync:function(_a66,_a67){if(!this._CancellationCallback){_a66.call(_a67);return;}this._CancellationCallback(function(){_a66.call(_a67);},this);},GetCache:function(){return this._PathMap;},SetCache:function(_a68){this._PathMap=_a68;},_CancellationCallback:null,_FolderGenerator:null,_PathMap:null,_Url:null,_GetAncestorsPaths:function(oUrl){var _a6a=oUrl.GetRelativePath().split("/");if(_a6a.length===0){return [];}if(_a6a[_a6a.length-1]===""){_a6a=_a6a.slice(0,-1);}var _a6b=[];var path="";for(var i=0;i<_a6a.length-1;i++){if(path!==""){path+="/";}path+=_a6a[i];_a6b.push(new ITHit.WebDAV.Client.Upload.Utils.DavUrl(path,oUrl.GetBaseUrl()));}return _a6b;}});})();(function(){"use strict";var self=ITHit.DefineClass("ITHit.WebDAV.Client.Upload.ContentWriter",null,{Url:null,constructor:function(_a6f,oUrl){this._Session=_a6f;this.Url=oUrl;},SetProgressDebounce:function(_a71){this._ReportPeriod=_a71;},BeginWrite:function(_a72){this._InitializeRequestContext();var _a73=null;if(_a72.IsFolder()){_a73=this._CreateMKCOLRequest();this._AddCustomHeaders(_a73);this._RequestContext.AddListener("OnError",this._OnErrorEventHandler,this);_a73.GetResponse(this._OnResponse.bind(this));this._RaiseOnStartEvent();return;}_a73=this._CreatePutRequest(_a72);_a73.Headers.Add("Overwrite","F");this._AddCustomHeaders(_a73);this._RequestContext.AddListener("OnError",this._OnErrorEventHandler,this);_a73.GetResponse(this._OnResponse.bind(this));this._RaiseOnStartEvent();},BeginRewrite:function(_a74){this._InitializeRequestContext();var _a75=null;if(_a74.IsFolder()){_a75=this._CreateMKCOLRequest();this._AddCustomHeaders(_a75);this._RequestContext.AddListener("OnError",this._OnMKCOLRewriteErrorEventHandler,this);_a75.GetResponse(this._OnMKCOLRewriteResponse.bind(this));this._RaiseOnStartEvent();}else{_a75=this._CreatePutRequest(_a74);_a75.Headers.Add("Overwrite","T");this._AddCustomHeaders(_a75);this._RequestContext.AddListener("OnError",this._OnErrorEventHandler,this);_a75.GetResponse(this._OnResponse.bind(this));this._RaiseOnStartEvent();}},BeginAppend:function(_a76){this._InitializeRequestContext();var _a77=this._CreatePutAppendRequest(_a76);_a77.Headers.Add("Overwrite","T");this._AddCustomHeaders(_a77);this._RequestContext.AddListener("OnError",this._OnErrorEventHandler,this);_a77.GetResponse(this._OnResponse.bind(this));this._RaiseOnStartEvent();},AbortAsync:function(_a78,_a79){if(this._RequestContext){this._RequestContext.RemoveListener(ITHit.WebDAV.Client.Request.EVENT_ON_UPLOAD_PROGRESS,this._OnProgressEventHandler,this);this._RequestContext.AbortAsync(_a78,_a79);}},AddListener:function(_a7a,_a7b,_a7c){_a7c=_a7c||null;this._ValidateEventName(_a7a);ITHit.Events.AddListener(this,_a7a,_a7b,_a7c);},RemoveListener:function(_a7d,_a7e,_a7f){_a7f=_a7f||null;this._ValidateEventName(_a7d);ITHit.Events.RemoveListener(this,_a7d,_a7e,_a7f);},_AddCustomHeaders:function(_a80){if(!this.CustomHeaders){return;}var _a81=[];var _a82=_a80.Headers.GetAll();this.CustomHeaders.forEach(function(_a83){if(_a81.indexOf(_a83.name)<0&&!_a82.hasOwnProperty(_a83.name)){_a80.Headers.Add(_a83.name,_a83.value);_a81.push(_a83.name);}});},_ValidateEventName:function(_a84){switch(_a84){case self.EVENT_ON_PROGRESS:case self.EVENT_ON_ERROR:case self.EVENT_ON_FINISH:case self.EVENT_ON_START:break;default:throw new ITHit.Exceptions.ArgumentException("Not found event name `"+_a84+"`");}},_InitializeRequestContext:function(){if(this.IsActive()){throw new ITHit.Exceptions("Content write already in progress");}this._RequestContext=this._Session.CreateRequest(this.__className);this._RequestContext.AddListener(ITHit.WebDAV.Client.Request.EVENT_ON_UPLOAD_PROGRESS,this._OnProgressEventHandler,this);},_CreateMKCOLRequest:function(){var _a85=this._RequestContext.CreateWebDavRequest(ITHit.WebDAV.Client.Encoder.Encode(this.Url.GetOrigin()),this.Url.GetHref());_a85.Method("MKCOL");this._SetDefaultHeaders(_a85);return _a85;},_OnMKCOLRewriteResponse:function(_a86){if(this._IsConflictResult(_a86)){_a86=this._TransformToSuccess(_a86);}this._OnResponse(_a86);},_OnMKCOLRewriteErrorEventHandler:function(_a87){if(_a87.Error instanceof ITHit.WebDAV.Client.Exceptions.MethodNotAllowedException){return;}},_OnResponse:function(_a88){if(_a88.IsAborted){_a88=ITHit.WebDAV.Client.CancellableResult.CreateAbortedResult(_a88.Error);this._RequestContext.MarkAbort();}else{_a88=ITHit.WebDAV.Client.CancellableResult.CreateFromAsyncResultResult(_a88);this._RequestContext.MarkFinish();}this._RaiseOnFinishEvent(_a88);this._RemoveRequestContextEventListeners();},_CreatePutRequest:function(_a89){var _a8a=this._RequestContext.CreateWebDavRequest(ITHit.WebDAV.Client.Encoder.Encode(this.Url.GetOrigin()),this.Url.GetHref());_a8a.Method("PUT");if(_a89.GetFile().type){_a8a.Headers.Add("Content-Type",_a89.GetFile().type);}_a8a.BodyBinary(_a89.GetFile());this._SetDefaultHeaders(_a8a);return _a8a;},_CreatePutAppendRequest:function(_a8b){var _a8c=this._RequestContext.CreateWebDavRequest(ITHit.WebDAV.Client.Encoder.Encode(this.Url.GetOrigin()),this.Url.GetHref());_a8c.Method("PUT");if(_a8b.GetFile().type){_a8c.Headers.Add("Content-Type",_a8b.GetFile().type);}if(_a8b.IsPartFile()){_a8c.Headers.Add("Content-Range",this._GetRangeHeader(_a8b));_a8c.BodyBinary(_a8b.GetSlice());}else{_a8c.BodyBinary(_a8b.GetFile());}this._SetDefaultHeaders(_a8c);return _a8c;},_GetRangeHeader:function(_a8d){return "bytes "+_a8d.GetStart()+"-"+(_a8d.GetEnd()-1)+"/"+_a8d.GetFullSize();},_TransformToSuccess:function(_a8e){return new ITHit.WebDAV.Client.AsyncResult(_a8e.Error,true,null);},_IsConflictResult:function(_a8f){return _a8f.Error instanceof ITHit.WebDAV.Client.Exceptions.MethodNotAllowedException;},_RaiseOnProgressEvent:function(_a90){ITHit.Events.DispatchEvent(this,self.EVENT_ON_PROGRESS,[{Progress:_a90,Uploader:this}]);},_RaiseOnErrorEvent:function(_a91){ITHit.Events.DispatchEvent(this,self.EVENT_ON_ERROR,[{Error:_a91,Uploader:this}]);},_RaiseOnFinishEvent:function(_a92){ITHit.Events.DispatchEvent(this,self.EVENT_ON_FINISH,[{Uploader:this,Result:_a92}]);},_RaiseOnStartEvent:function(){ITHit.Events.DispatchEvent(this,self.EVENT_ON_START,[{Uploader:this}]);},_OnProgressEventHandler:function(_a93){var iNow=new Date().getTime();if(iNow-this._LastReportTime>this._ReportPeriod||_a93.Progress.BytesTotal===_a93.Progress.BytesLoaded){this._RaiseOnProgressEvent(_a93.Progress);this._LastReportTime=iNow;}},_OnErrorEventHandler:function(_a95){this._RaiseOnErrorEvent(_a95.Error);},_RemoveRequestContextEventListeners:function(){ITHit.Events.RemoveAllListeners(this._RequestContext,"OnUploadProgress");ITHit.Events.RemoveAllListeners(this._RequestContext,"OnError");delete this._RequestContext;},_SetDefaultHeaders:function(_a96){_a96.Headers.Add("If-Modified-Since","Mon, 26 Jul 1997 05:00:00 GMT");_a96.Headers.Add("X-Requested-With","XMLHttpRequest");},IsActive:function(){return !!this._RequestContext;},_Session:null,_RequestContext:null,_ReportPeriod:1000,_LastReportTime:0},{EVENT_ON_PROGRESS:"OnProgress",EVENT_ON_ERROR:"OnError",EVENT_ON_FINISH:"OnFinish",EVENT_ON_START:"OnStart"});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Path.Generator",null,{constructor:function(_a97){this._Session=_a97;this._WorkList=new ITHit.WebDAV.Client.Upload.Collections.Map();},_SendRequest:function(oUrl){var _a99=this._Session.CreateRequest(this.__className+".GeneratePathAsync()");ITHit.WebDAV.Client.Methods.Mkcol.GoAsync(_a99,oUrl.toString(),[],ITHit.WebDAV.Client.Encoder.Encode(oUrl.GetHost()),function(_a9a){if(_a9a.IsAborted){_a99.MarkAbort();}else{_a99.MarkFinish();}this._CallAwaiters(oUrl,_a9a);}.bind(this));return _a99;},_RecurrentGenerate:function(_a9b,_a9c,_a9d,_a9e){var _a9f=null;var _aa0=null;var _aa1=function(_aa2,_aa3){if(!!_a9f){_a9f.AbortAsync(_aa2,_aa3);return;}if(!!_aa0){_aa0(_aa2,_aa3);}_aa2.call(_a9e);};var _aa4=_a9c.slice();var _aa5=[];while(_aa4.length>0){var oUrl=_aa4[0];if(!_a9b.Has(oUrl)){break;}_aa5.push(oUrl);_aa4.splice(0,1);}if(_aa4.length===0){_a9d.call(_a9e,ITHit.WebDAV.Client.CancellableResult.CreateSuccessfulResult(_aa5));return _aa1;}var _aa7=_aa4.shift();if(!this._IsInWork(_aa7)){_a9f=this._SendRequest(_aa7);}this._AddAwaiter(_aa7,function(_aa8){if(!_aa8.IsSuccess&&!this._IsConflictResult(_aa8)){_a9d.call(_a9e,_aa8);return;}_a9b.Add(_aa7);_aa5.push(oUrl);_a9f=null;_aa0=this._RecurrentGenerate(_a9b,_aa4,function(_aa9){if(_aa9.IsSuccess||this._IsConflictResult(_aa8)){_aa9.Result.concat(_aa5);_aa9=ITHit.WebDAV.Client.CancellableResult.CreateSuccessfulResult(_aa5);}_aa0=null;_a9d.call(_a9e,_aa9);return;},this);}.bind(this));return _aa1;},GeneratePathAsync:function(_aaa,oUrl,_aac,_aad){var _aae=this._GetAncestorsPaths(oUrl);if(_aae.length===0){return _aac.call(_aad,ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult([]));}return this._RecurrentGenerate(_aaa,_aae,_aac,_aad);},_Session:null,_WorkList:null,_GetAncestorsPaths:function(oUrl){var _ab0=oUrl.GetRelativePath().split("/");if(_ab0.length===0){return [];}if(_ab0[_ab0.length-1]===""){_ab0=_ab0.slice(0,-1);}var _ab1=[];var path="";for(var i=0;i<_ab0.length-1;i++){if(path!==""){path+="/";}path+=_ab0[i];_ab1.push(new ITHit.WebDAV.Client.Upload.Utils.DavUrl(path,oUrl.GetBaseUrl()));}return _ab1;},_IsInWork:function(oUrl){var _ab5=this._WorkList.Get(oUrl.toString());return _ab5&&(_ab5.length>0);},_AddAwaiter:function(oUrl,_ab7){var _ab8=this._WorkList.Get(oUrl.toString());var _ab9=[];if(_ab8){_ab9=_ab9.concat(_ab8);}_ab9.push(_ab7);this._WorkList.Set(oUrl.toString(),_ab9);},_CallAwaiters:function(oUrl,_abb){var _abc=this._WorkList.Get(oUrl.toString());this._WorkList.Delete(oUrl.toString());_abc.forEach(function(_abd){_abd(_abb);});},_IsConflictResult:function(_abe){if(_abe.IsSuccess){return false;}if(_abe.Error&&_abe.Error instanceof ITHit.WebDAV.Client.Exceptions.MethodNotAllowedException){return true;}return false;}});})();(function(){ITHit.DefineClass("ITHit.WebDAV.Client.Upload.UploaderSession",ITHit.WebDAV.Client.WebDavSession,{ExistsFolders:[],GetProgressReportAsync:function(sUrl,_ac0,_ac1){var _ac2=this.CreateRequest(this.__className+".ReportAsync()");var _ac3=ITHit.WebDAV.Client.HierarchyItem.GetHost(sUrl);ITHit.WebDAV.Client.Methods.Report.GoAsync(_ac2,sUrl,_ac3,null,null,function(_ac4){_ac2.MarkFinish();_ac0.call(_ac1,_ac4);});return _ac2;},CancelUploadAsync:function(sUrl,_ac6){var _ac7=this.CreateRequest(this.__className+".CancelUpload()");var _ac8=ITHit.WebDAV.Client.HierarchyItem.GetHost(sUrl);ITHit.WebDAV.Client.Methods.CancelUpload.GoAsync(_ac7,sUrl,[],_ac8,function(_ac9){_ac7.MarkFinish();var _aca=new ITHit.WebDAV.Client.AsyncResult(true,true,null);if(_ac9.Error instanceof ITHit.WebDAV.Client.Exceptions.NotFoundException){_aca=new ITHit.WebDAV.Client.AsyncResult(true,true,null);}else{if(!_ac9.IsSuccess){_aca=new ITHit.WebDAV.Client.AsyncResult(_ac9.IsSuccess,_ac9.IsSuccess,_ac9.Error);}}_ac6(_aca);});return _ac7;},CheckExistsAsync:function(sUrl,_acc,_acd){_acc=_acc||function(){};return this.OpenItemAsync(ITHit.WebDAV.Client.Encoder.Encode(sUrl),[],function(_ace){var _acf=new ITHit.WebDAV.Client.AsyncResult(true,true,null);if(_ace.Error instanceof ITHit.WebDAV.Client.Exceptions.NotFoundException){_acf=new ITHit.WebDAV.Client.AsyncResult(false,true,null);}else{if(!_ace.IsSuccess){_acf=new ITHit.WebDAV.Client.AsyncResult(_ace.IsSuccess,_ace.IsSuccess,_ace.Error);}}_acc.call(_acd,_acf);});},DeleteAsync:function(_ad0,_ad1,_ad2){_ad1=_ad1||null;var _ad3=ITHit.WebDAV.Client.HierarchyItem.GetHost(_ad0);var _ad4=this.CreateRequest(this.__className+".DeleteAsync()");ITHit.WebDAV.Client.Methods.Delete.GoAsync(_ad4,_ad0,_ad1,_ad3,function(_ad5){if(!_ad5.IsSuccess&&_ad5.Error instanceof ITHit.WebDAV.Client.Exceptions.NotFoundException){_ad5=new ITHit.WebDAV.Client.AsyncResult(true,true,null);}_ad4.MarkFinish();_ad2(_ad5);});return _ad4;},CreateFolderRangeAsync:function(_ad6,_ad7,_ad8,_ad9){_ad7=_ad7||null;_ad8=_ad8||ITHit.Utils.NoOp;var _ada=_ad6.length;var _adb=this.CreateRequest(this.__className+".CreateFolderRangeAsync()",_ada);this._PerformCreateFolderRangeMethodAsync(_adb,_ad6,_ad7,function(_adc){_adb.MarkFinish();_ad8.call(_ad9,_adc);});return _adb;},_PerformCreateFolderRangeMethodAsync:function(_add,_ade,_adf,_ae0,_ae1){_ae0=_ae0||ITHit.Utils.NoOp;_ade=_ade.slice();var _ae2=_ade.unshift();var _ae3=ITHit.WebDAV.Client.Encoder.Encode(_ae2.GetHref());var _ae4=ITHit.WebDAV.Client.Encoder.Encode(_ae2.GetHost());ITHit.WebDAV.Client.Methods.Mkcol.GoAsync(_add,_ae3,_adf,_ae4,function(_ae5){if(_ae5.IsSuccess||_ae5.Error instanceof ITHit.WebDAV.Client.Exceptions.MethodNotAllowedException){_ae5=new ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult([_ae2]);}if(_ade.length>0&&_ae5.IsSuccess){this._PerformCreateFolderRangeMethodAsync(_add,_ade,_adf,function(_ae6){if(_ae6.IsSuccess){_ae6.Result.push(_ae2);}_ae0.call(_ae1,_ae6);return;},this);}else{_ae0.call(_ae1,_ae5);return;}});},CreateUploadLocation:function(oUrl){return new ITHit.WebDAV.Client.Upload.UploadLocation(this.GetPathGenerator(),oUrl);},CreateContentWriter:function(oUrl){return new ITHit.WebDAV.Client.Upload.ContentWriter(this,oUrl);},GetPathGenerator:function(){if(!this._PathGenerator){this._PathGenerator=new ITHit.WebDAV.Client.Upload.Path.Generator(this);}return this._PathGenerator;},_PathGenerator:null});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Utils.RepeatableActionContext",null,{_RoundsCount:0,_IsActive:true,_Handler:null,_EndHandler:null,_RepeatTime:0,constructor:function(_ae9,_aea,_aeb,_aec){this._RoundsCount=_ae9;this._Handler=_aeb;this._EndHandler=_aec;this._IsActive=!!_ae9;this._RepeatTime=_aea;},Stop:function(_aed){this._IsActive=false;this._RoundsCount=0;this._EndHandler(_aed);},_RunRound:function(){if(this._IsActive){this._Handler(this);}else{this.Stop();}},EndRound:function(_aee){this._RoundsCount--;if(this._RoundsCount===0){this.Stop(_aee);}else{setTimeout(this._RunRound.bind(this),this._RepeatTime);}}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Utils.RepeatableAction",null,{_Action:null,constructor:function(_aef){this._Action=_aef;},RunAsync:function(_af0,_af1,_af2){var _af3=new ITHit.WebDAV.Client.Upload.Utils.RepeatableActionContext(_af0,_af1,this._Action,_af2);_af3._RunRound();}});})();(function(){"use strict";var self=ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.UploadError",ITHit.WebDAV.Client.Upload.Events.AsyncEvent,{Error:null,Skip:function(){if(this._IsHandled){return;}this._SkipRetry(this.Items);},Retry:function(){if(this._IsHandled){return;}this._Retry(this.Items);},constructor:function(_af5,_af6,_af7){this.Name=ITHit.WebDAV.Client.Upload.Events.EventName.OnUploadError;this.Error=_af6;this._super(_af5,_af7);},_Retry:function(){this._Handle(self.GetRetryResult(this.Error));},_SkipRetry:function(){this._Handle(self.GetSkipResult(this.Error));}},{GetSkipResult:function(_af8){return {Action:"skip",Error:_af8};},GetRetryResult:function(_af9){return {Action:"retry",Error:_af9};}});})();(function(){ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.Error",ITHit.WebDAV.Client.Upload.Events.BaseEvent,{Error:null,constructor:function(_afa,_afb){this.Name=ITHit.WebDAV.Client.Upload.Events.EventName.OnError;this.Error=_afb;this.Sender=_afa;}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.States.BaseState",null,{OnEnter:function(_afc){},OnLeave:function(_afd){},StartUploadAsync:function(_afe,_aff){_aff();},PauseUpload:function(_b00,_b01){_b01();},AbortUpload:function(_b02,_b03,_b04,_b05){_b05();},Skip:function(_b06){},OnUploadLocationPrepared:function(_b07,_b08){},OnUploadProgressPrepared:function(_b09,_b0a){},OnContentCompleted:function(_b0b,_b0c){},OnRetryResult:function(_b0d,_b0e){},_CompletePauseAsync:function(_b0f,_b10,_b11){if(_b0f.IsRetrySchedule){_b0f.IsRetrySchedule=false;}_b0f.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetPausedState());_b10.call(_b11);},_StartPauseAsync:function(_b12,_b13){_b12._ProgressTracker.StopTracking();_b12.CancelAllRequests(function(){if(_b12.IsContentSend){_b12.SyncProgressWithServerAsync(function(_b14){this._CompletePauseAsync(_b12,_b13);},this);return;}this._CompletePauseAsync(_b12,_b13);},this);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.States.CompletedState",ITHit.WebDAV.Client.Upload.States.BaseState,{GetAsEnum:function(){return ITHit.WebDAV.Client.Upload.State.Completed;},OnEnter:function(_b15){_b15.GetProgressTracker().StopTracking();_b15.GetProgressTracker().SetCompleted();},StartUploadAsync:function(_b16,_b17){_b16.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetUploadingState());this._super(_b16,_b17);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.States.SkippedState",ITHit.WebDAV.Client.Upload.States.BaseState,{GetAsEnum:function(){return ITHit.WebDAV.Client.Upload.State.Skipped;},StartUploadAsync:function(_b18,_b19){_b18.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetUploadingState());this._super(_b18,_b19);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.States.QueuedState",ITHit.WebDAV.Client.Upload.States.BaseState,{GetAsEnum:function(){return ITHit.WebDAV.Client.Upload.State.Queued;},StartUploadAsync:function(_b1a,_b1b){_b1a.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetUploadingState());this._super(_b1a,_b1b);},Skip:function(_b1c){_b1c.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetSkippedState());},PauseUpload:function(_b1d,_b1e){this._StartPauseAsync(_b1d,_b1e);},AbortUpload:function(_b1f,_b20,_b21,_b22){_b1f.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetCanceledState());this._super(_b1f,_b20,_b21,_b22);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.States.CanceledState",ITHit.WebDAV.Client.Upload.States.BaseState,{GetAsEnum:function(){return ITHit.WebDAV.Client.Upload.State.Canceled;},OnEnter:function(_b23){_b23.GetProgressTracker().StopTracking();_b23.GetProgressTracker().Reset();},StartUploadAsync:function(_b24,_b25){_b24.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetUploadingState());this._super(_b24,_b25);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.States.UploadingState",ITHit.WebDAV.Client.Upload.States.BaseState,{GetAsEnum:function(){return ITHit.WebDAV.Client.Upload.State.Uploading;},OnEnter:function(_b26){_b26.PrepareUploadLocation();},PauseUpload:function(_b27,_b28){this._StartPauseAsync(_b27,_b28);},AbortUpload:function(_b29,_b2a,_b2b,_b2c){_b29.CancelAllRequests(function(){_b29.GetProgressTracker().StopTracking();_b29.CancelAndDeleteAsync(_b2a,_b2b,function(_b2d){if(_b2d.IsSuccess){_b29.GetProgressTracker().Reset();_b29.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetCanceledState());}else{_b29.AddError(_b2d.Error);_b29.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetFailedState());}_b2c();},this);},this);},OnContentCompleted:function(_b2e,_b2f){var _b30=_b2f.Result;if(_b30.IsAborted){return;}if(_b30.IsSuccess){_b2e.GetProgressTracker().SetCompleted();_b2e.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetCompletedState());return;}this._HandleError(_b2e,_b30);},_HandleError:function(_b31,_b32){_b31.AddError(_b32.Error);_b31.BeginRetry(_b32.Error);},OnRetryResult:function(_b33,_b34){if(_b34.Action==="skip"){_b33.AddError(_b34.Error);_b33.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetFailedState());return;}if(_b33.IsContentSend){_b33.SyncProgressWithServerAsync(function(_b35){if(_b35.Error){this._HandleError(_b34.Error);}else{this.OnEnter(_b33);}},this);return;}this.OnEnter(_b33);},OnUploadLocationPrepared:function(_b36,_b37){if(_b37.IsAborted){return;}if(!_b37.IsSuccess){this._HandleError(_b36,_b37);return;}_b36._SendContent();}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.States.ResumeState",ITHit.WebDAV.Client.Upload.States.UploadingState,{OnEnter:function(_b38){if(_b38.IsContentSend){_b38.PrepareProgress();return;}this._super(_b38);},OnUploadProgressPrepared:function(_b39,_b3a){if(_b3a.IsAborted){return;}if(!_b3a.IsSuccess){this._HandleError(_b39,_b3a);return;}if(_b39.GetProgressTracker().IsCompleted()){_b39.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetCompletedState());}_b39._SendContent();}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.States.PausedState",ITHit.WebDAV.Client.Upload.States.BaseState,{GetAsEnum:function(){return ITHit.WebDAV.Client.Upload.State.Paused;},OnEnter:function(_b3b){_b3b.GetProgressTracker().StopTracking();_b3b.GetProgressTracker().ResetSpeed();},StartUploadAsync:function(_b3c,_b3d){_b3c.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetResumeState());this._super(_b3c,_b3d);},AbortUpload:function(_b3e,_b3f,_b40,_b41){if(_b3e.IsContentSend){_b3e.CancelAndDeleteAsync(_b3f,_b40,function(_b42){if(_b42.IsSuccess){_b3e.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetCanceledState());}else{_b3e.AddError(_b42.Error);_b3e.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetFailedState());}_b41();},this);}else{_b3e.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetCanceledState());_b41();}}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.States.FailedState",ITHit.WebDAV.Client.Upload.States.BaseState,{GetAsEnum:function(){return ITHit.WebDAV.Client.Upload.State.Failed;},OnEnter:function(_b43){_b43.GetProgressTracker().StopTracking();_b43.GetProgressTracker().ResetSpeed();},StartUploadAsync:function(_b44,_b45){_b44.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetUploadingState());this._super(_b44,_b45);},AbortUpload:function(_b46,_b47,_b48,_b49){if(_b46.IsContentSend){_b46.CancelAndDeleteAsync(_b47,_b48,function(_b4a){if(_b4a.IsSuccess){_b46.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetCanceledState());}else{_b46.AddError(_b4a.Error);_b46.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetFailedState());}_b49();},this);}else{_b46.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetCanceledState());_b49();}}});})();(function(){ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Settings",null,{ConcurrentUploads:2,State:ITHit.WebDAV.Client.Upload.State.Queued,DeleteOnCancel:true});})();(function(){"use strict";var self=ITHit.DefineClass("ITHit.WebDAV.Client.Upload.States.Factory",null,{},{GetUploadingState:function(){if(!self._UploadingState){self._UploadingState=new ITHit.WebDAV.Client.Upload.States.UploadingState();}return self._UploadingState;},GetSkippedState:function(){if(!self._SkippedState){self._SkippedState=new ITHit.WebDAV.Client.Upload.States.SkippedState();}return self._SkippedState;},GetQueuedState:function(){if(!self._QueuedState){self._QueuedState=new ITHit.WebDAV.Client.Upload.States.QueuedState();}return self._QueuedState;},GetPausedState:function(){if(!self._PausedState){self._PausedState=new ITHit.WebDAV.Client.Upload.States.PausedState();}return self._PausedState;},GetFailedState:function(){if(!self._FailedState){self._FailedState=new ITHit.WebDAV.Client.Upload.States.FailedState();}return self._FailedState;},GetCompletedState:function(){if(!self._CompletedState){self._CompletedState=new ITHit.WebDAV.Client.Upload.States.CompletedState();}return self._CompletedState;},GetCanceledState:function(){if(!self._CanceledState){self._CanceledState=new ITHit.WebDAV.Client.Upload.States.CanceledState();}return self._CanceledState;},GetResumeState:function(){if(!self._ResumeState){self._ResumeState=new ITHit.WebDAV.Client.Upload.States.ResumeState();}return self._ResumeState;},GetState:function(_b4c){switch(_b4c){case ITHit.WebDAV.Client.Upload.State.Canceled:return self.GetCanceledState();case ITHit.WebDAV.Client.Upload.State.Completed:return self.GetCompletedState();case ITHit.WebDAV.Client.Upload.State.Failed:return self.GetFailedState();case ITHit.WebDAV.Client.Upload.State.Paused:return self.GetPausedState();case ITHit.WebDAV.Client.Upload.State.Queued:return self.GetQueuedState();case ITHit.WebDAV.Client.Upload.State.Skipped:return self.GetSkippedState();case ITHit.WebDAV.Client.Upload.State.Uploading:return self.GetUploadingState();default:throw new ITHit.Exceptions.ArgumentException(null,"oState");}}});})();(function(){ITHit.DefineClass("ITHit.WebDAV.Client.Upload.ItemSettings",null,{ForceRewrite:false,AlwaysRewriteFolders:true,IgnoreCancelErrors:false,DeleteOnCancel:false});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.ServerItem",null,{constructor:function(_b4d,oUrl){this._Session=_b4d;this._Url=oUrl;},GetProgressAsync:function(_b4f,_b50){return this._Session.GetProgressReportAsync(this._Url.GetHref(),function(_b51){if(_b51.IsSuccess&&_b51.Result[0]){var _b52=_b51.Result[0];_b4f.call(_b50,ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult(_b52));return;}_b4f.call(_b50,_b51);},this);},CancelUploadAsync:function(_b53,_b54){this._Session.CancelUploadAsync(this._Url.GetHref(),function(_b55){_b53.call(_b54,_b55);});},DeleteAsync:function(_b56,_b57,_b58,_b59){var that=this;var _b5b=new ITHit.WebDAV.Client.Upload.Utils.RepeatableAction(function(_b5c){that._Session.DeleteAsync(that._Url.GetHref(),null,function(_b5d){if(_b5d.IsSuccess){_b5c.Stop(_b5d);}else{_b5c.EndRound(_b5d);}});});_b5b.RunAsync(_b56,_b57,function(_b5e){_b58.call(_b59,_b5e);});},CancelAndDeleteAsync:function(_b5f,_b60,_b61,_b62){this.CancelUploadAsync(function(_b63){if(!_b63.IsSuccess){return _b61.call(_b62,_b63);}this.DeleteAsync(_b5f,_b60,_b61,_b62);},this);},_Url:null,_Session:null});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Providers.UploadProvider",null,{Session:null,_UploadItem:null,constructor:function(_b64,_b65,_b66,oUrl,_b68){this.FSEntry=_b66;this.Url=oUrl;this.Settings=new ITHit.WebDAV.Client.Upload.ItemSettings();if(this.FSEntry.IsFile()){this.Settings.DeleteOnCancel=_b68.DeleteOnCancel;}else{this.Settings.DeleteOnCancel=false;}this.Session=_b64;this._UploadItem=_b65;this._ProgressTracker=new ITHit.WebDAV.Client.Upload.Providers.ProgressTracker(this.FSEntry.GetSize());this._State=ITHit.WebDAV.Client.Upload.States.Factory.GetState(_b68.State);this.Errors=[];this.UploadLocation=_b64.CreateUploadLocation(this.Url);this.ServerItem=new ITHit.WebDAV.Client.Upload.ServerItem(_b64,this.Url);this.ContentWriter=_b64.CreateContentWriter(this.Url);this.ContentWriter.AddListener(ITHit.WebDAV.Client.Upload.ContentWriter.EVENT_ON_PROGRESS,this.OnRequestProgressEventHandler,this);this.ContentWriter.AddListener(ITHit.WebDAV.Client.Upload.ContentWriter.EVENT_ON_FINISH,this._LoadHandler,this);this.ContentWriter.AddListener(ITHit.WebDAV.Client.Upload.ContentWriter.EVENT_ON_START,this._StartLoadHandler,this);this._ProgressTracker.OnProgressChanged(this._SetProgress,this);},StartUploadAsync:function(_b69){this._BeginStateChange();this._State.StartUploadAsync(this,_b69);},PauseUpload:function(_b6a){this._BeginStateChange();this._State.PauseUpload(this,_b6a);},AbortUpload:function(_b6b,_b6c,_b6d){this._BeginStateChange();_b6d=_b6d||function(){};this._State.AbortUpload(this,_b6b,_b6c,_b6d);},Skip:function(){this._BeginStateChange();this._State.Skip(this);},GetGroup:function(){return this._UploadItem.GetGroup();},GetProgressTracker:function(){return this._ProgressTracker;},_ProgressTracker:null,AddListener:function(_b6e,_b6f,_b70){this._ValidateEventName(_b6e);_b70=_b70||null;ITHit.Events.AddListener(this,_b6e,_b6f,_b70);},RemoveListener:function(_b71,_b72,_b73){this._ValidateEventName(_b71);_b73=_b73||null;ITHit.Events.RemoveListener(this,_b71,_b72,_b73);},_ValidateEventName:function(_b74){switch(_b74){case ITHit.WebDAV.Client.Upload.Events.EventName.OnStateChanged:case ITHit.WebDAV.Client.Upload.Events.EventName.OnError:case ITHit.WebDAV.Client.Upload.Events.EventName.OnProgressChanged:break;default:throw new ITHit.Exceptions.ArgumentException("Not found event name `"+_b74+"`");}},CheckRetryAsync:function(_b75,_b76,_b77){var _b78=new ITHit.WebDAV.Client.Upload.Events.UploadError(this._UploadItem,_b75,function(_b79){if(!this.IsRetrySchedule){return;}_b76.call(_b77,_b79);}.bind(this));if(!this._UploadItem.OnUploadErrorCallback&&(ITHit.Events.ListenersLength(this._UploadItem,_b78.Name)===0)){_b76.call(_b77,ITHit.WebDAV.Client.Upload.Events.UploadError.GetSkipResult(_b75));return;}this.IsRetrySchedule=true;if(this._UploadItem.OnUploadErrorCallback){this._UploadItem.OnUploadErrorCallback.call(this,_b78);}ITHit.Events.DispatchEvent(this._UploadItem,_b78.Name,_b78);},Errors:null,LastError:null,AddError:function(_b7a){this.AddErrorSilent(_b7a);this._RiseOnErrorEvent(_b7a);},AddErrorSilent:function(_b7b){this.LastError=_b7b;this.Errors.push(_b7b);},SetFailed:function(_b7c){var _b7d=ITHit.WebDAV.Client.Upload.States.Factory.GetFailedState();this.AddError(_b7c);this.SetState(_b7d);},_RiseOnErrorEvent:function(_b7e){var _b7f=new ITHit.WebDAV.Client.Upload.Events.Error(this,_b7e);ITHit.Events.DispatchEvent(this,_b7f.Name,_b7f);},UploadLocation:null,IsContentSend:false,ServerItem:null,_LoadHandler:function(_b80){if(_b80.Result.Error instanceof ITHit.WebDAV.Client.Exceptions.ConflictException){this.UploadLocation.SetNotExists();this.IsContentSend=false;}this._State.OnContentCompleted(this,_b80);},_StartLoadHandler:function(_b81){this.IsContentSend=true;},OnRequestProgressEventHandler:function(_b82){this.GetProgressTracker().UpdateBytes(_b82.Progress.BytesLoaded,_b82.Progress.TotalBytes);},_SendContent:function(){this._ProgressTracker.StartTracking();if(this.Settings&&this.Settings.CustomHeaders){this.ContentWriter.CustomHeaders=this.Settings.CustomHeaders;}if(this.FSEntry.IsFolder()){if(this.Settings.ForceRewrite||this.Settings.AlwaysRewriteFolders){this.ContentWriter.BeginRewrite(this.FSEntry);}else{this.ContentWriter.BeginWrite(this.FSEntry);}}else{var _b83=new ITHit.WebDAV.Client.Upload.FileSpan(this.FSEntry.GetFile(),this._ProgressTracker.GetProgress().UploadedBytes);if(_b83.IsFullFile()&&(this.Settings.ForceRewrite||this.IsContentSend)){this.ContentWriter.BeginRewrite(this.FSEntry);return;}if(_b83.IsFullFile()&&!(this.Settings.ForceRewrite&&this.IsContentSend)){this.ContentWriter.BeginWrite(this.FSEntry);return;}this.ContentWriter.BeginAppend(_b83);}},SyncProgressWithServerAsync:function(_b84,_b85){if(!this._ProgressTracker.IsCountable()){return this.Session.CheckExistsAsync(this.Url.GetUrl(),function(_b86){if(!_b86.IsSuccess){_b84.call(_b85,_b86);return;}if(_b86.Result===true){this._ProgressTracker.SetCompleted();_b84.call(_b85,ITHit.WebDAV.Client.CancellableResult.CreateSuccessfulResult(this._ProgressTracker.GetProgress()));return;}this._ProgressTracker.Reset();_b84.call(_b85,ITHit.WebDAV.Client.CancellableResult.CreateSuccessfulResult(this._ProgressTracker.GetProgress()));},this);}return this.ServerItem.GetProgressAsync(function(_b87){if(_b87.IsSuccess){this._ProgressTracker.SyncProgress(_b87.Result);_b84.call(_b85,ITHit.WebDAV.Client.CancellableResult.CreateSuccessfulResult(this._ProgressTracker.GetProgress()));return;}if(_b87.Error instanceof ITHit.WebDAV.Client.Exceptions.NotFoundException){this._ProgressTracker.Reset();_b84.call(_b85,ITHit.WebDAV.Client.CancellableResult.CreateSuccessfulResult(this._ProgressTracker.GetProgress()));return;}_b84.call(_b85,ITHit.WebDAV.Client.CancellableResult.CreateFailedResult(_b87.Error));},this);},IsRetrySchedule:false,PrepareUploadLocation:function(){this.UploadLocation.SetCache(this.GetGroup().PathMap);this.UploadLocation.CreateAsync(this._OnGeneratePathCompleted,this);},_OnGeneratePathCompleted:function(_b88){if(_b88.IsAborted){return;}this._State.OnUploadLocationPrepared(this,_b88);},CancelAllRequests:function(_b89,_b8a){this._CancelProgressAsync(function(){this._CancelLocationCreateAsync(function(){this._CancelContentSendingAsync(_b89,_b8a);},this);},this);},_CancelLocationCreateAsync:function(_b8b,_b8c){if(this.UploadLocation.IsInProgress()){this.UploadLocation.AbortRunningCreationAsync(function(){_b8b.call(_b8c);},this);}else{_b8b.call(_b8c);}},_CancelContentSendingAsync:function(_b8d,_b8e){if(this.ContentWriter.IsActive()){this.ContentWriter.AbortAsync(function(){_b8d.call(_b8e);},this);}else{_b8d.call(_b8e);}},_CancelProgressAsync:function(_b8f,_b90){if(this.IsProgressSyncInProgress){this._SyncProgressRequest.AbortAsync(function(){_b8f.call(_b90);},this);}else{_b8f.call(_b90);}},_SyncProgressRequest:null,IsProgressSyncInProgress:false,PrepareProgress:function(){this._SyncProgressRequest=this.SyncProgressWithServerAsync(this._OnUpdateFromServerCompleted,this);},_OnUpdateFromServerCompleted:function(_b91){this.IsProgressSyncInProgress=false;if(_b91.IsAborted){return;}this._State.OnUploadProgressPrepared(this,_b91);},_IsStateChanging:function(){return this._IsChanging;},SetState:function(_b92){var _b93=this._State;this._State.OnLeave(this);this._State=_b92;this._State.OnEnter(this);var _b94=new ITHit.WebDAV.Client.Upload.Events.StateChanged(this,_b93.GetAsEnum(),this._State.GetAsEnum());ITHit.Events.DispatchEvent(this,_b94.Name,_b94);},GetState:function(){return this._State;},_State:null,_IsChanging:false,_BeginStateChange:function(){this._IsChanging=true;},_EndStateChange:function(){this._IsChanging=false;},ContentWriter:null,BeginRetry:function(_b95){this._ProgressTracker.StopTracking();this.CheckRetryAsync(_b95,this._OnCheckRetryCompleted,this);},_OnCheckRetryCompleted:function(_b96){this._State.OnRetryResult(this,_b96);},Settings:null,FSEntry:null,Url:null,CancelAndDeleteAsync:function(_b97,_b98,_b99,_b9a){this.ServerItem.CancelUploadAsync(function(_b9b){if(!this.Settings.DeleteOnCancel){_b99.call(_b9a,ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult(null));return;}this.ServerItem.DeleteAsync(_b97,_b98,function(_b9c){if(!_b9c.IsSuccess&&!this.Settings.IgnoreCancelErrors){return _b99.call(_b9a,_b9b);}this.IsContentSend=false;_b99.call(_b9a,ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult(null));},this);},this);},GetProgress:function(){return this._ProgressTracker.GetProgress();},_SetProgress:function(_b9d){var _b9e=this._Progress;this._Progress=_b9d;var _b9f=new ITHit.WebDAV.Client.Upload.Events.ProgressChanged(this,_b9e,_b9d);ITHit.Events.DispatchEvent(this,_b9f.Name,_b9f);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.UploadItemsCreated",ITHit.WebDAV.Client.Upload.Events.AsyncEvent,{Items:[],Skip:function(_ba0){if(this._IsHandled){return;}this._Skip(_ba0);},SkipAll:function(){if(this._IsHandled){return;}this._Skip(this.Items);},OverwriteAll:function(){if(this._IsHandled){return;}this._Overwrite(this.Items);},Overwrite:function(_ba1){if(this._IsHandled){return;}this._Overwrite(_ba1);},UploadAll:function(){if(this._IsHandled){return;}this.Upload(this.Items);},Upload:function(_ba2){if(this._IsHandled){return;}this._Handle({Skip:[],Overwrite:[],Original:this.Items,Upload:_ba2});},constructor:function(_ba3,_ba4,_ba5){this.Name=ITHit.WebDAV.Client.Upload.Events.EventName.OnUploadItemsCreated;this.Items=_ba4||[];this._super(_ba3,_ba5);},_Overwrite:function(_ba6){var _ba7=this._CreateResult([],_ba6);this._Handle(_ba7);},_Skip:function(_ba8){var _ba9=this._CreateResult(_ba8,[]);this._Handle(_ba9);},_CreateResult:function(_baa,_bab){return {Skip:_baa||[],Overwrite:_bab||[],Original:this.Items};},_Handle:function(_bac){_bac=_bac||this._CreateResult();this._super(_bac);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Utils.Array",null,{},{MapParallel:function(_bad,_bae,_baf,_bb0){var _bb1=[];var _bb2=0;if(_bad.length===0){setTimeout(_baf.apply(_bb0,_bad));}for(var i=0;i<_bad.length;i++){_bae.apply(_bb0,[_bad[i],i,_bad,ITHit.Utils.MakeScopeClosure(this,function(i,_bb5){_bb1[i]=_bb5;_bb2++;if(_bb2===_bad.length){setTimeout(_baf.call(_bb0,_bb1));}},i)]);}},DistinctBy:function(_bb6,_bb7,_bb8){var map=Object.create(null);_bb7=_bb7||Object.prototype.toString;for(var i=0;i<_bb6.length;i++){var _bbb=_bb7.call(_bb8,_bb6[i]).toString();if(!map[_bbb]){map[_bbb]=_bb6[i];}}return Object.keys(map).map(function(sKey){return map[sKey];});},Take:function(_bbd,_bbe){if(!_bbe){return [_bbd.shift()];}var _bbf=(_bbd.length>_bbe)?_bbe:_bbd.length;var _bc0=[];for(var i=0;i<_bbf;i++){_bc0.push(_bbd.shift());}return _bc0;},Remove:function(_bc2,_bc3){var _bc4=_bc2.indexOf(_bc3);if(_bc4>-1){_bc2.splice(_bc4,1);}}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.AutoUploader",null,{constructor:function(_bc5){this._ParallelUploads=_bc5||0;this._QueueArray=[];this._Active=[];this._Reserve=0;},AddRange:function(_bc6){_bc6.forEach(this._AddToQueue,this);this._StartUploads();},Add:function(_bc7){this._AddToQueue(_bc7);this._StartUploads();},Remove:function(_bc8){_bc8.RemoveListener(ITHit.WebDAV.Client.Upload.Events.EventName.OnStateChanged,this._OnStateChangeEventHandler,this);ITHit.WebDAV.Client.Upload.Utils.Array.Remove(this._QueueArray,_bc8);ITHit.WebDAV.Client.Upload.Utils.Array.Remove(this._Active,_bc8);this._StartUploads();},Reserve:function(_bc9){_bc9=_bc9||1;this._Reserve+=_bc9;},Release:function(_bca){_bca=_bca||1;this._Reserve-=_bca;this._StartUploads();},GetBusy:function(){return this._Active.length+this._Reserve;},GetFree:function(){var _bcb=this.GetBusy();if(_bcb>=this._ParallelUploads){return 0;}else{if(_bcb===0){return this._ParallelUploads;}else{return (this._ParallelUploads-_bcb)%this._ParallelUploads;}}},_QueueArray:null,_Active:null,_ParallelUploads:0,_OnStateChangeEventHandler:function(_bcc){if(_bcc.NewState!==ITHit.WebDAV.Client.Upload.State.Uploading){this.Remove(_bcc.Sender);}else{this._StartUploads();}},_StartUploads:function(){if(this._QueueArray.length===0){return;}var _bcd=this.GetFree();if(_bcd<=0){return;}var _bce=ITHit.WebDAV.Client.Upload.Utils.Array.Take(this._QueueArray,_bcd);if(_bce.length<1){return;}this.Reserve(_bce.length);_bce.forEach(this._StartSingle,this);},_StartSingle:function(_bcf){this._Active.push(_bcf);_bcf.StartAsync();this.Release();},_AddToQueue:function(_bd0){this._QueueArray.push(_bd0);_bd0.AddListener(ITHit.WebDAV.Client.Upload.Events.EventName.OnStateChanged,this._OnStateChangeEventHandler,this);},_Reserve:0});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Queue",null,{Uploader:null,_UnderlyingArray:null,_Session:null,_AutoUploader:null,constructor:function(_bd1){this.Uploader=_bd1;this._Session=new ITHit.WebDAV.Client.Upload.UploaderSession();this._UnderlyingArray=[];this._GroupManager=new ITHit.WebDAV.Client.Upload.Groups.GroupManager();this._AutoUploader=new ITHit.WebDAV.Client.Upload.AutoUploader(this.Uploader.Settings.ConcurrentUploads);},ShouldReplaceDuplicate:function(_bd2){var _bd3=this.GetByUrl(_bd2.GetUrl());var _bd4=_bd3.GetState();return !(_bd4===ITHit.WebDAV.Client.Upload.State.Uploading||_bd4===ITHit.WebDAV.Client.Upload.State.Paused);},AddGroup:function(sUrl,_bd6,_bd7){var _bd8=[];for(var i=0;i<_bd6.length;i++){var _bda=_bd6[i];var _bdb=new ITHit.WebDAV.Client.Upload.UploadItem(sUrl,_bda,_bd7,this._Session,this._GroupManager,this.Uploader.Settings);if(this.HasUrl(_bdb.GetUrl())){if(this.ShouldReplaceDuplicate(_bdb)){this.RemoveByUrl(_bdb.GetUrl());}else{continue;}}_bd8.push(_bdb);}this._DispatchOnUploadItemsCreatedAsync(_bd8,this._OnUploadItemsCreatedAsyncDispatched.bind(this));},Add:function(_bdc){var sUrl=_bdc.GetUrl();if(this.HasUrl(sUrl)){return;}this._UnderlyingArray.push(_bdc);var _bde=new ITHit.WebDAV.Client.Upload.Events.QueueChanged(this,[_bdc]);ITHit.Events.DispatchEvent(this,_bde.Name,[_bde]);this._AutoUploader.Add(_bdc);},AddRange:function(_bdf){for(var i=0;i<_bdf.length;i++){var _be1=_bdf[i];var sUrl=_be1.GetUrl();if(this.HasUrl(sUrl)){continue;}this._UnderlyingArray.push(_be1);}this._GroupManager.CreateGroup(_bdf);this._OnQueueChanged(_bdf,null);var _be3=_bdf.filter(function(_be4){return _be4.GetState()===ITHit.WebDAV.Client.Upload.State.Queued;});this._AutoUploader.AddRange(_be3);},Restart:function(_be5){for(var i=0;i<_be5.length;i++){if(!this.HasUrl(_be5[i].GetUrl())){throw new ITHit.Exceptions.ArgumentException("Item should be a part of queue`");}}this._AutoUploader.AddRange(_be5);},GetByUrl:function(sUrl){return ITHit.Utils.FindBy(this._UnderlyingArray,function(_be8){return _be8.GetUrl()===sUrl;});},GetLength:function(){return this._UnderlyingArray.length;},HasUrl:function(sUrl){return !!this.GetByUrl(sUrl);},RemoveByUrl:function(sUrl){var _beb=this.GetByUrl(sUrl);if(!_beb){return;}var _bec=_beb.GetState();if(_bec===ITHit.WebDAV.Client.Upload.State.Uploading||_bec===ITHit.WebDAV.Client.Upload.State.Paused){_beb.Abort();}var _bed=ITHit.Utils.IndexOf(this._UnderlyingArray,_beb);this._UnderlyingArray.splice(_bed,1);this._OnQueueChanged(null,[_beb]);this._AutoUploader.Remove(_beb);},OnUploadItemsCreatedCallback:null,_OnQueueChanged:function(_bee,_bef){var _bf0=new ITHit.WebDAV.Client.Upload.Events.QueueChanged(this,_bee,_bef);ITHit.Events.DispatchEvent(this,_bf0.Name,[_bf0]);},_DispatchOnUploadItemsCreatedAsync:function(_bf1,_bf2){var _bf3=new ITHit.WebDAV.Client.Upload.Events.UploadItemsCreated(this,_bf1.slice(),_bf2);if(!this.OnUploadItemsCreatedCallback&&(ITHit.Events.ListenersLength(this,_bf3.Name)===0)){_bf3.OverwriteAll();}if(this.OnUploadItemsCreatedCallback){this.OnUploadItemsCreatedCallback(_bf3);}ITHit.Events.DispatchEvent(this,_bf3.Name,_bf3);},AddListener:function(_bf4,_bf5,_bf6){_bf6=_bf6||null;switch(_bf4){case ITHit.WebDAV.Client.Upload.Events.EventName.OnQueueChanged:case ITHit.WebDAV.Client.Upload.Events.EventName.OnUploadItemsCreated:ITHit.Events.AddListener(this,_bf4,_bf5,_bf6);break;default:throw new ITHit.WebDAV.Client.Exceptions.WebDavException("Not found event name `"+_bf4+"`");}},RemoveListener:function(_bf7,_bf8,_bf9){ITHit.Events.RemoveListener(this,_bf7,_bf8,_bf9);},_OnUploadItemsCreatedAsyncDispatched:function(_bfa){if(_bfa.Upload){this.AddRange(_bfa.Upload);return;}this._OnUploadItemsCreatedAsyncDispatchedDeprecated(_bfa);},_OnUploadItemsCreatedAsyncDispatchedDeprecated:function(_bfb){var _bfc=this._FilterSkippedItems(_bfb);var _bfd=this._CreateUrlUploadItemMap(_bfb.Overwrite);_bfc.forEach(function(_bfe){if(_bfd.Has(_bfe.GetUrl())){_bfe.SetOverwrite(true);}});this.AddRange(_bfc);},_FilterSkippedItems:function(_bff){var _c00=this._CreateUrlUploadItemMap(_bff.Skip);return _bff.Original.filter(function(_c01){return !_c00.Has(_c01.GetUrl());});},_CreateUrlUploadItemMap:function(_c02){var oMap=new ITHit.WebDAV.Client.Upload.Collections.Map();_c02.forEach(function(_c04){oMap.Set(_c04.GetUrl(),_c04);});return oMap;},_GroupManager:null});})();(function(){"use strict";var _c05=ITHit.DefineClass("ITHit.WebDAV.Client.Upload.DropZoneCollection",null,{_UnderlyingSet:null,Uploader:null,constructor:function(_c06){this._Uploader=_c06;this._UnderlyingSet={};},AddById:function(_c07){var _c08=this.GetById(_c07);if(_c08){return _c08;}var _c09=new ITHit.WebDAV.Client.Upload.Controls.DropZone(_c07);this._UnderlyingSet[_c07]=_c09;this._RaiseOnCollectionChanged([_c09],[]);return _c09;},GetById:function(_c0a){return this._UnderlyingSet[_c0a];},RemoveById:function(_c0b){var _c0c=this.GetById(_c0b);if(_c0c){delete this._UnderlyingSet[_c0b];this._RaiseOnCollectionChanged([],[_c0c]);}},AddListener:function(_c0d,_c0e,_c0f){_c0f=_c0f||null;this._CheckEventNameOtThrow(_c0d);ITHit.Events.AddListener(this,_c0d,_c0e,_c0f);},RemoveListener:function(_c10,_c11,_c12){_c12=_c12||null;this._CheckEventNameOtThrow(_c10);ITHit.Events.RemoveListener(this,_c10,_c11,_c12);},_CheckEventNameOtThrow:function(_c13){if(_c13!==_c05.EVENT_ON_COLLECTION_CHANGED){throw new ITHit.WebDAV.Client.Exceptions.NotFoundEventNameException(_c13);}},_RaiseOnCollectionChanged:function(_c14,_c15){ITHit.Events.DispatchEvent(this,_c05.EVENT_ON_COLLECTION_CHANGED,[{Sender:this,AddedItems:_c14||[],RemovedItems:_c15||[]}]);}},{EVENT_ON_COLLECTION_CHANGED:"OnCollectionChanged"});})();(function(){var _c16=ITHit.DefineClass("ITHit.WebDAV.Client.Upload.InputCollection",null,{_UnderlyingSet:null,Uploader:null,constructor:function(_c17){this._UnderlyingArray=[];this._Uploader=_c17;},AddById:function(_c18){var _c19=new ITHit.WebDAV.Client.Upload.Controls.Input(_c18);this._UnderlyingArray[_c18]=_c19;this._RaiseOnCollectionChanged([_c19],[]);return _c19;},GetById:function(_c1a){return this._UnderlyingArray[_c1a];},RemoveById:function(_c1b){var _c1c=this.GetById(_c1b);if(_c1c){delete this._UnderlyingSet[_c1b];this._RaiseOnCollectionChanged([],[_c1c]);}},AddListener:function(_c1d,_c1e,_c1f){_c1f=_c1f||null;this._CheckEventNameOtThrow(_c1d);ITHit.Events.AddListener(this,_c1d,_c1e,_c1f);},RemoveListener:function(_c20,_c21,_c22){_c22=_c22||null;this._CheckEventNameOtThrow(_c20);ITHit.Events.RemoveListener(this,_c20,_c21,_c22);},_CheckEventNameOtThrow:function(_c23){if(_c23!==_c16.EVENT_ON_COLLECTION_CHANGED){throw new ITHit.WebDAV.Client.Exceptions.NotFoundEventNameException(_c23);}},_RaiseOnCollectionChanged:function(_c24,_c25){ITHit.Events.DispatchEvent(this,_c16.EVENT_ON_COLLECTION_CHANGED,[{Sender:this,AddedItems:_c24||[],RemovedItems:_c25||[]}]);}},{EVENT_ON_COLLECTION_CHANGED:"OnCollectionChanged"});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Uploader",null,{DropZones:null,Inputs:null,Queue:null,Settings:null,_UploadProvider:null,constructor:function(){this.Inputs=new ITHit.WebDAV.Client.Upload.InputCollection(this);this.Inputs.AddListener(ITHit.WebDAV.Client.Upload.InputCollection.EVENT_ON_COLLECTION_CHANGED,this._OnControlCollectionChangedEventHandler,this);this.DropZones=new ITHit.WebDAV.Client.Upload.DropZoneCollection(this);this.DropZones.AddListener(ITHit.WebDAV.Client.Upload.DropZoneCollection.EVENT_ON_COLLECTION_CHANGED,this._OnControlCollectionChangedEventHandler,this);this.Settings=new ITHit.WebDAV.Client.Upload.Settings();this.Queue=new ITHit.WebDAV.Client.Upload.Queue(this);},SetUploadUrl:function(sUrl){this._UploadUrl=sUrl;},GetUploadUrl:function(){return this._UploadUrl;},_OnControlCollectionChangedEventHandler:function(_c27){_c27.AddedItems.forEach(function(_c28){_c28.AddListener(ITHit.WebDAV.Client.Upload.Controls.HtmlControl.EVENT_ON_FILE_INPUT_HANDLED,this._OnFileInputEventHandler.bind(this));}.bind(this));_c27.RemovedItems.forEach(function(_c29){_c29.RemoveListener(ITHit.WebDAV.Client.Upload.Controls.HtmlControl.EVENT_ON_FILE_INPUT_HANDLED,this._OnFileInputEventHandler.bind(this));}.bind(this));},_OnFileInputEventHandler:function(_c2a){this.Queue.AddGroup(this._UploadUrl,_c2a.AsyncResult.Result,_c2a.Source);}});})();ITHit.Temp={};
|