appium-remote-debugger 15.7.0 → 15.7.2
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/CHANGELOG.md +12 -0
- package/atoms/active_element.js +16 -71
- package/atoms/clear.js +73 -131
- package/atoms/clear_local_storage.js +16 -71
- package/atoms/clear_session_storage.js +16 -71
- package/atoms/click.js +81 -137
- package/atoms/default_content.js +16 -71
- package/atoms/execute_async_script.js +20 -9
- package/atoms/execute_script.js +19 -7
- package/atoms/execute_sql.js +13 -2
- package/atoms/find_element.js +56 -109
- package/atoms/find_element_fragment.js +57 -111
- package/atoms/find_elements.js +57 -112
- package/atoms/frame_by_id_or_name.js +59 -112
- package/atoms/frame_by_index.js +16 -71
- package/atoms/get_appcache_status.js +16 -71
- package/atoms/get_attribute.js +15 -4
- package/atoms/get_attribute_value.js +32 -90
- package/atoms/get_effective_style.js +15 -6
- package/atoms/get_element_from_cache.js +14 -3
- package/atoms/get_frame_window.js +16 -71
- package/atoms/get_local_storage_item.js +16 -71
- package/atoms/get_local_storage_key.js +10 -67
- package/atoms/get_local_storage_keys.js +16 -71
- package/atoms/get_local_storage_size.js +16 -71
- package/atoms/get_location.js +14 -3
- package/atoms/get_session_storage_item.js +16 -71
- package/atoms/get_session_storage_key.js +10 -67
- package/atoms/get_session_storage_keys.js +16 -71
- package/atoms/get_session_storage_size.js +16 -71
- package/atoms/get_size.js +31 -91
- package/atoms/get_text.js +53 -112
- package/atoms/get_top_left_coordinates.js +42 -101
- package/atoms/get_value_of_css_property.js +32 -90
- package/atoms/is_displayed.js +47 -106
- package/atoms/is_editable.js +12 -1
- package/atoms/is_enabled.js +29 -87
- package/atoms/is_focusable.js +15 -4
- package/atoms/is_interactable.js +33 -23
- package/atoms/is_selected.js +28 -87
- package/atoms/lastupdate +6 -17
- package/atoms/remove_local_storage_item.js +16 -71
- package/atoms/remove_session_storage_item.js +16 -71
- package/atoms/set_local_storage_item.js +16 -71
- package/atoms/set_session_storage_item.js +16 -71
- package/atoms/submit.js +71 -129
- package/atoms/type.js +71 -129
- package/package.json +2 -2
|
@@ -1,108 +1,49 @@
|
|
|
1
|
-
function(){return (function(){
|
|
2
|
-
function ca(a){var b=typeof a;if("object"==b)if(a){if(a instanceof Array)return"array";if(a instanceof Object)return b;var c=Object.prototype.toString.call(a);if("[object Window]"==c)return"object";if("[object Array]"==c||"number"==typeof a.length&&"undefined"!=typeof a.splice&&"undefined"!=typeof a.propertyIsEnumerable&&!a.propertyIsEnumerable("splice"))return"array";if("[object Function]"==c||"undefined"!=typeof a.call&&"undefined"!=typeof a.propertyIsEnumerable&&!a.propertyIsEnumerable("call"))return"function"}else return"null";
|
|
3
|
-
else if("function"==b&&"undefined"==typeof a.call)return"object";return b}function da(a){var b=ca(a);return"array"==b||"object"==b&&"number"==typeof a.length}function ea(a){return"function"==ca(a)}function fa(a){var b=typeof a;return"object"==b&&null!=a||"function"==b}function ha(a,b,c){return a.call.apply(a.bind,arguments)}
|
|
4
|
-
function ia(a,b,c){if(!a)throw Error();if(2<arguments.length){var d=Array.prototype.slice.call(arguments,2);return function(){var e=Array.prototype.slice.call(arguments);Array.prototype.unshift.apply(e,d);return a.apply(b,e)}}return function(){return a.apply(b,arguments)}}function ja(a,b,c){Function.prototype.bind&&-1!=Function.prototype.bind.toString().indexOf("native code")?ja=ha:ja=ia;return ja.apply(null,arguments)}
|
|
5
|
-
function ka(a,b){var c=Array.prototype.slice.call(arguments,1);return function(){var d=c.slice();d.push.apply(d,arguments);return a.apply(this,d)}}var la=Date.now||function(){return+new Date};function m(a,b){function c(){}c.prototype=b.prototype;a.I=b.prototype;a.prototype=new c;a.prototype.constructor=a}
|
|
6
|
-
function ma(a,b,c){var d=arguments.callee.caller;if("undefined"!==typeof d.I){for(var e=Array(arguments.length-1),f=1;f<arguments.length;f++)e[f-1]=arguments[f];d.I.constructor.apply(a,e)}else{if("string"!=typeof b&&"symbol"!=typeof b)throw Error("method names provided to goog.base must be a string or a symbol");e=Array(arguments.length-2);for(f=2;f<arguments.length;f++)e[f-2]=arguments[f];f=!1;for(var g=a.constructor.prototype;g;g=Object.getPrototypeOf(g))if(g[b]===d)f=!0;else if(f){g[b].apply(a,
|
|
7
|
-
e);return}if(a[b]===d)a.constructor.prototype[b].apply(a,e);else throw Error("goog.base called from a method of one name to a method of a different name");}};/*
|
|
1
|
+
function(){return (function(){/*
|
|
8
2
|
|
|
9
|
-
The
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
The above copyright notice and this permission notice shall be included in
|
|
22
|
-
all copies or substantial portions of the Software.
|
|
3
|
+
Copyright The Closure Library Authors.
|
|
4
|
+
Copyright The Closure Compiler Authors.
|
|
5
|
+
SPDX-License-Identifier: Apache-2.0
|
|
6
|
+
*/
|
|
7
|
+
var e;function aa(a){var b=0;return function(){return b<a.length?{done:!1,value:a[b++]}:{done:!0}}}var k=typeof Object.defineProperties=="function"?Object.defineProperty:function(a,b,c){if(a==Array.prototype||a==Object.prototype)return a;a[b]=c.value;return a};
|
|
8
|
+
function ba(a){a=["object"==typeof globalThis&&globalThis,a,"object"==typeof window&&window,"object"==typeof self&&self,"object"==typeof global&&global];for(var b=0;b<a.length;++b){var c=a[b];if(c&&c.Math==Math)return c}throw Error("Cannot find global object");}var ca=ba(this);function l(a,b){if(b)a:{var c=ca;a=a.split(".");for(var d=0;d<a.length-1;d++){var f=a[d];if(!(f in c))break a;c=c[f]}a=a[a.length-1];d=c[a];b=b(d);b!=d&&b!=null&&k(c,a,{configurable:!0,writable:!0,value:b})}}
|
|
9
|
+
l("Symbol",function(a){function b(g){if(this instanceof b)throw new TypeError("Symbol is not a constructor");return new c(d+(g||"")+"_"+f++,g)}function c(g,h){this.g=g;k(this,"description",{configurable:!0,writable:!0,value:h})}if(a)return a;c.prototype.toString=function(){return this.g};var d="jscomp_symbol_"+(Math.random()*1E9>>>0)+"_",f=0;return b});
|
|
10
|
+
l("Symbol.iterator",function(a){if(a)return a;a=Symbol("Symbol.iterator");for(var b="Array Int8Array Uint8Array Uint8ClampedArray Int16Array Uint16Array Int32Array Uint32Array Float32Array Float64Array".split(" "),c=0;c<b.length;c++){var d=ca[b[c]];typeof d==="function"&&typeof d.prototype[a]!="function"&&k(d.prototype,a,{configurable:!0,writable:!0,value:function(){return da(aa(this))}})}return a});function da(a){a={next:a};a[Symbol.iterator]=function(){return this};return a}
|
|
11
|
+
var ea=typeof Object.create=="function"?Object.create:function(a){function b(){}b.prototype=a;return new b},p;if(typeof Object.setPrototypeOf=="function")p=Object.setPrototypeOf;else{var fa;a:{var ha={a:!0},ja={};try{ja.__proto__=ha;fa=ja.a;break a}catch(a){}fa=!1}p=fa?function(a,b){a.__proto__=b;if(a.__proto__!==b)throw new TypeError(a+" is not extensible");return a}:null}var ka=p;
|
|
12
|
+
function la(a,b){a.prototype=ea(b.prototype);a.prototype.constructor=a;if(ka)ka(a,b);else for(var c in b)if(c!="prototype")if(Object.defineProperties){var d=Object.getOwnPropertyDescriptor(b,c);d&&Object.defineProperty(a,c,d)}else a[c]=b[c];a.v=b.prototype}function ma(a,b){a instanceof String&&(a+="");var c=0,d=!1,f={next:function(){if(!d&&c<a.length){var g=c++;return{value:b(g,a[g]),done:!1}}d=!0;return{done:!0,value:void 0}}};f[Symbol.iterator]=function(){return f};return f}
|
|
13
|
+
l("Array.prototype.keys",function(a){return a?a:function(){return ma(this,function(b){return b})}});var na=na||{},q=this||self;try{var oa=window}catch(a){oa=q};/*
|
|
23
14
|
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
27
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
28
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
29
|
-
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
30
|
-
IN THE SOFTWARE.
|
|
15
|
+
Copyright The Closure Library Authors.
|
|
16
|
+
SPDX-License-Identifier: Apache-2.0
|
|
31
17
|
*/
|
|
32
|
-
function
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
function
|
|
36
|
-
Oa.prototype.scale=function(a,b){this.width*=a;this.height*="number"===typeof b?b:a;return this};function Pa(a,b){if(!a||!b)return!1;if(a.contains&&1==b.nodeType)return a==b||a.contains(b);if("undefined"!=typeof a.compareDocumentPosition)return a==b||!!(a.compareDocumentPosition(b)&16);for(;b&&a!=b;)b=b.parentNode;return b==a}
|
|
37
|
-
function Qa(a,b){if(a==b)return 0;if(a.compareDocumentPosition)return a.compareDocumentPosition(b)&2?1:-1;if("sourceIndex"in a||a.parentNode&&"sourceIndex"in a.parentNode){var c=1==a.nodeType,d=1==b.nodeType;if(c&&d)return a.sourceIndex-b.sourceIndex;var e=a.parentNode,f=b.parentNode;return e==f?Ra(a,b):!c&&Pa(e,b)?-1*Sa(a,b):!d&&Pa(f,a)?Sa(b,a):(c?a.sourceIndex:e.sourceIndex)-(d?b.sourceIndex:f.sourceIndex)}d=A(a);c=d.createRange();c.selectNode(a);c.collapse(!0);a=d.createRange();a.selectNode(b);
|
|
38
|
-
a.collapse(!0);return c.compareBoundaryPoints(h.Range.START_TO_END,a)}function Sa(a,b){var c=a.parentNode;if(c==b)return-1;for(;b.parentNode!=c;)b=b.parentNode;return Ra(b,a)}function Ra(a,b){for(;b=b.previousSibling;)if(b==a)return-1;return 1}function A(a){return 9==a.nodeType?a:a.ownerDocument||a.document}function Ta(a){this.a=a||h.document||document}Ta.prototype.getElementsByTagName=function(a,b){return(b||this.a).getElementsByTagName(String(a))};function B(a){var b=null,c=a.nodeType;1==c&&(b=a.textContent,b=void 0==b||null==b?a.innerText:b,b=void 0==b||null==b?"":b);if("string"!=typeof b)if(9==c||1==c){a=9==c?a.documentElement:a.firstChild;c=0;var d=[];for(b="";a;){do 1!=a.nodeType&&(b+=a.nodeValue),d[c++]=a;while(a=a.firstChild);for(;c&&!(a=d[--c].nextSibling););}}else b=a.nodeValue;return b}
|
|
39
|
-
function Ua(a,b,c){if(null===b)return!0;try{if(!a.getAttribute)return!1}catch(d){return!1}return null==c?!!a.getAttribute(b):a.getAttribute(b,2)==c}function Va(a,b,c,d,e){return Wa.call(null,a,b,aa(c)?c:null,aa(d)?d:null,e||new C)}
|
|
40
|
-
function Wa(a,b,c,d,e){b.getElementsByName&&d&&"name"==c?(b=b.getElementsByName(d),p(b,function(f){a.a(f)&&e.add(f)})):b.getElementsByClassName&&d&&"class"==c?(b=b.getElementsByClassName(d),p(b,function(f){f.className==d&&a.a(f)&&e.add(f)})):a instanceof F?Xa(a,b,c,d,e):b.getElementsByTagName&&(b=b.getElementsByTagName(a.f()),p(b,function(f){Ua(f,c,d)&&e.add(f)}));return e}function Xa(a,b,c,d,e){for(b=b.firstChild;b;b=b.nextSibling)Ua(b,c,d)&&a.a(b)&&e.add(b),Xa(a,b,c,d,e)};function C(){this.b=this.a=null;this.o=0}function Ya(a){this.f=a;this.a=this.b=null}function Za(a,b){if(!a.a)return b;if(!b.a)return a;var c=a.a;b=b.a;for(var d=null,e,f=0;c&&b;)c.f==b.f?(e=c,c=c.a,b=b.a):0<Qa(c.f,b.f)?(e=b,b=b.a):(e=c,c=c.a),(e.b=d)?d.a=e:a.a=e,d=e,f++;for(e=c||b;e;)e.b=d,d=d.a=e,f++,e=e.a;a.b=d;a.o=f;return a}function $a(a,b){b=new Ya(b);b.a=a.a;a.b?a.a.b=b:a.a=a.b=b;a.a=b;a.o++}C.prototype.add=function(a){a=new Ya(a);a.b=this.b;this.a?this.b.a=a:this.a=this.b=a;this.b=a;this.o++};
|
|
41
|
-
function ab(a){return(a=a.a)?a.f:null}function bb(a){return(a=ab(a))?B(a):""}function G(a,b){return new cb(a,!!b)}function cb(a,b){this.f=a;this.b=(this.v=b)?a.b:a.a;this.a=null}function H(a){var b=a.b;if(null==b)return null;var c=a.a=b;a.b=a.v?b.b:b.a;return c.f};function I(a){this.l=a;this.b=this.i=!1;this.f=null}function J(a){return"\n "+a.toString().split("\n").join("\n ")}function db(a,b){a.i=b}function eb(a,b){a.b=b}function K(a,b){a=a.a(b);return a instanceof C?+bb(a):+a}function L(a,b){a=a.a(b);return a instanceof C?bb(a):""+a}function fb(a,b){a=a.a(b);return a instanceof C?!!a.o:!!a};function gb(a,b,c){I.call(this,a.l);this.c=a;this.j=b;this.u=c;this.i=b.i||c.i;this.b=b.b||c.b;this.c==hb&&(c.b||c.i||4==c.l||0==c.l||!b.f?b.b||b.i||4==b.l||0==b.l||!c.f||(this.f={name:c.f.name,A:b}):this.f={name:b.f.name,A:c})}m(gb,I);
|
|
42
|
-
function ib(a,b,c,d,e){b=b.a(d);c=c.a(d);var f;if(b instanceof C&&c instanceof C){b=G(b);for(d=H(b);d;d=H(b))for(e=G(c),f=H(e);f;f=H(e))if(a(B(d),B(f)))return!0;return!1}if(b instanceof C||c instanceof C){b instanceof C?(e=b,d=c):(e=c,d=b);f=G(e);for(var g=typeof d,l=H(f);l;l=H(f)){switch(g){case "number":l=+B(l);break;case "boolean":l=!!B(l);break;case "string":l=B(l);break;default:throw Error("Illegal primitive type for comparison.");}if(e==b&&a(l,d)||e==c&&a(d,l))return!0}return!1}return e?"boolean"==
|
|
43
|
-
typeof b||"boolean"==typeof c?a(!!b,!!c):"number"==typeof b||"number"==typeof c?a(+b,+c):a(b,c):a(+b,+c)}gb.prototype.a=function(a){return this.c.s(this.j,this.u,a)};gb.prototype.toString=function(){var a="Binary Expression: "+this.c;a+=J(this.j);return a+=J(this.u)};function jb(a,b,c,d){this.M=a;this.H=b;this.l=c;this.s=d}jb.prototype.toString=function(){return this.M};var kb={};
|
|
44
|
-
function M(a,b,c,d){if(kb.hasOwnProperty(a))throw Error("Binary operator already created: "+a);a=new jb(a,b,c,d);return kb[a.toString()]=a}M("div",6,1,function(a,b,c){return K(a,c)/K(b,c)});M("mod",6,1,function(a,b,c){return K(a,c)%K(b,c)});M("*",6,1,function(a,b,c){return K(a,c)*K(b,c)});M("+",5,1,function(a,b,c){return K(a,c)+K(b,c)});M("-",5,1,function(a,b,c){return K(a,c)-K(b,c)});M("<",4,2,function(a,b,c){return ib(function(d,e){return d<e},a,b,c)});
|
|
45
|
-
M(">",4,2,function(a,b,c){return ib(function(d,e){return d>e},a,b,c)});M("<=",4,2,function(a,b,c){return ib(function(d,e){return d<=e},a,b,c)});M(">=",4,2,function(a,b,c){return ib(function(d,e){return d>=e},a,b,c)});var hb=M("=",3,2,function(a,b,c){return ib(function(d,e){return d==e},a,b,c,!0)});M("!=",3,2,function(a,b,c){return ib(function(d,e){return d!=e},a,b,c,!0)});M("and",2,2,function(a,b,c){return fb(a,c)&&fb(b,c)});M("or",1,2,function(a,b,c){return fb(a,c)||fb(b,c)});function lb(a,b){if(b.a.length&&4!=a.l)throw Error("Primary expression must evaluate to nodeset if filter has predicate(s).");I.call(this,a.l);this.c=a;this.j=b;this.i=a.i;this.b=a.b}m(lb,I);lb.prototype.a=function(a){a=this.c.a(a);return mb(this.j,a)};lb.prototype.toString=function(){var a="Filter:"+J(this.c);return a+=J(this.j)};function ob(a,b){if(b.length<a.G)throw Error("Function "+a.m+" expects at least"+a.G+" arguments, "+b.length+" given");if(null!==a.D&&b.length>a.D)throw Error("Function "+a.m+" expects at most "+a.D+" arguments, "+b.length+" given");a.L&&p(b,function(c,d){if(4!=c.l)throw Error("Argument "+d+" to function "+a.m+" is not of type Nodeset: "+c);});I.call(this,a.l);this.B=a;this.c=b;db(this,a.i||ra(b,function(c){return c.i}));eb(this,a.K&&!b.length||a.J&&!!b.length||ra(b,function(c){return c.b}))}
|
|
46
|
-
m(ob,I);ob.prototype.a=function(a){return this.B.s.apply(null,sa(a,this.c))};ob.prototype.toString=function(){var a="Function: "+this.B;if(this.c.length){var b=qa(this.c,function(c,d){return c+J(d)},"Arguments:");a+=J(b)}return a};function pb(a,b,c,d,e,f,g,l){this.m=a;this.l=b;this.i=c;this.K=d;this.J=!1;this.s=e;this.G=f;this.D=void 0!==g?g:f;this.L=!!l}pb.prototype.toString=function(){return this.m};var qb={};
|
|
47
|
-
function N(a,b,c,d,e,f,g,l){if(qb.hasOwnProperty(a))throw Error("Function already created: "+a+".");qb[a]=new pb(a,b,c,d,e,f,g,l)}N("boolean",2,!1,!1,function(a,b){return fb(b,a)},1);N("ceiling",1,!1,!1,function(a,b){return Math.ceil(K(b,a))},1);N("concat",3,!1,!1,function(a,b){return qa(ta(arguments,1),function(c,d){return c+L(d,a)},"")},2,null);N("contains",2,!1,!1,function(a,b,c){b=L(b,a);a=L(c,a);return-1!=b.indexOf(a)},2);N("count",1,!1,!1,function(a,b){return b.a(a).o},1,1,!0);
|
|
48
|
-
N("false",2,!1,!1,function(){return!1},0);N("floor",1,!1,!1,function(a,b){return Math.floor(K(b,a))},1);N("id",4,!1,!1,function(a,b){var c=a.a,d=9==c.nodeType?c:c.ownerDocument;a=L(b,a).split(/\s+/);var e=[];p(a,function(g){g=d.getElementById(g);!g||0<=oa(e,g)||e.push(g)});e.sort(Qa);var f=new C;p(e,function(g){f.add(g)});return f},1);N("lang",2,!1,!1,function(){return!1},1);N("last",1,!0,!1,function(a){if(1!=arguments.length)throw Error("Function last expects ()");return a.f},0);
|
|
49
|
-
N("local-name",3,!1,!0,function(a,b){return(a=b?ab(b.a(a)):a.a)?a.localName||a.nodeName.toLowerCase():""},0,1,!0);N("name",3,!1,!0,function(a,b){return(a=b?ab(b.a(a)):a.a)?a.nodeName.toLowerCase():""},0,1,!0);N("namespace-uri",3,!0,!1,function(){return""},0,1,!0);N("normalize-space",3,!1,!0,function(a,b){return(b?L(b,a):B(a.a)).replace(/[\s\xa0]+/g," ").replace(/^\s+|\s+$/g,"")},0,1);N("not",2,!1,!1,function(a,b){return!fb(b,a)},1);N("number",1,!1,!0,function(a,b){return b?K(b,a):+B(a.a)},0,1);
|
|
50
|
-
N("position",1,!0,!1,function(a){return a.b},0);N("round",1,!1,!1,function(a,b){return Math.round(K(b,a))},1);N("starts-with",2,!1,!1,function(a,b,c){b=L(b,a);a=L(c,a);return 0==b.lastIndexOf(a,0)},2);N("string",3,!1,!0,function(a,b){return b?L(b,a):B(a.a)},0,1);N("string-length",1,!1,!0,function(a,b){return(b?L(b,a):B(a.a)).length},0,1);
|
|
51
|
-
N("substring",3,!1,!1,function(a,b,c,d){c=K(c,a);if(isNaN(c)||Infinity==c||-Infinity==c)return"";d=d?K(d,a):Infinity;if(isNaN(d)||-Infinity===d)return"";c=Math.round(c)-1;var e=Math.max(c,0);a=L(b,a);return Infinity==d?a.substring(e):a.substring(e,c+Math.round(d))},2,3);N("substring-after",3,!1,!1,function(a,b,c){b=L(b,a);a=L(c,a);c=b.indexOf(a);return-1==c?"":b.substring(c+a.length)},2);
|
|
52
|
-
N("substring-before",3,!1,!1,function(a,b,c){b=L(b,a);a=L(c,a);a=b.indexOf(a);return-1==a?"":b.substring(0,a)},2);N("sum",1,!1,!1,function(a,b){a=G(b.a(a));b=0;for(var c=H(a);c;c=H(a))b+=+B(c);return b},1,1,!0);N("translate",3,!1,!1,function(a,b,c,d){b=L(b,a);c=L(c,a);var e=L(d,a);a={};for(d=0;d<c.length;d++){var f=c.charAt(d);f in a||(a[f]=e.charAt(d))}c="";for(d=0;d<b.length;d++)f=b.charAt(d),c+=f in a?a[f]:f;return c},3);N("true",2,!1,!1,function(){return!0},0);function F(a,b){this.j=a;this.c=void 0!==b?b:null;this.b=null;switch(a){case "comment":this.b=8;break;case "text":this.b=3;break;case "processing-instruction":this.b=7;break;case "node":break;default:throw Error("Unexpected argument");}}function rb(a){return"comment"==a||"text"==a||"processing-instruction"==a||"node"==a}F.prototype.a=function(a){return null===this.b||this.b==a.nodeType};F.prototype.f=function(){return this.j};
|
|
53
|
-
F.prototype.toString=function(){var a="Kind Test: "+this.j;null===this.c||(a+=J(this.c));return a};function sb(a){I.call(this,3);this.c=a.substring(1,a.length-1)}m(sb,I);sb.prototype.a=function(){return this.c};sb.prototype.toString=function(){return"Literal: "+this.c};function tb(a,b){this.m=a.toLowerCase();a="*"==this.m?"*":"http://www.w3.org/1999/xhtml";this.b=b?b.toLowerCase():a}tb.prototype.a=function(a){var b=a.nodeType;if(1!=b&&2!=b)return!1;b=void 0!==a.localName?a.localName:a.nodeName;return"*"!=this.m&&this.m!=b.toLowerCase()?!1:"*"==this.b?!0:this.b==(a.namespaceURI?a.namespaceURI.toLowerCase():"http://www.w3.org/1999/xhtml")};tb.prototype.f=function(){return this.m};
|
|
54
|
-
tb.prototype.toString=function(){return"Name Test: "+("http://www.w3.org/1999/xhtml"==this.b?"":this.b+":")+this.m};function ub(a){I.call(this,1);this.c=a}m(ub,I);ub.prototype.a=function(){return this.c};ub.prototype.toString=function(){return"Number: "+this.c};function vb(a,b){I.call(this,a.l);this.j=a;this.c=b;this.i=a.i;this.b=a.b;1==this.c.length&&(a=this.c[0],a.C||a.c!=wb||(a=a.u,"*"!=a.f()&&(this.f={name:a.f(),A:null})))}m(vb,I);function xb(){I.call(this,4)}m(xb,I);xb.prototype.a=function(a){var b=new C;a=a.a;9==a.nodeType?b.add(a):b.add(a.ownerDocument);return b};xb.prototype.toString=function(){return"Root Helper Expression"};function yb(){I.call(this,4)}m(yb,I);yb.prototype.a=function(a){var b=new C;b.add(a.a);return b};yb.prototype.toString=function(){return"Context Helper Expression"};
|
|
55
|
-
function zb(a){return"/"==a||"//"==a}vb.prototype.a=function(a){var b=this.j.a(a);if(!(b instanceof C))throw Error("Filter expression must evaluate to nodeset.");a=this.c;for(var c=0,d=a.length;c<d&&b.o;c++){var e=a[c],f=G(b,e.c.v);if(e.i||e.c!=Ab)if(e.i||e.c!=Bb){var g=H(f);for(b=e.a(new na(g));null!=(g=H(f));)g=e.a(new na(g)),b=Za(b,g)}else g=H(f),b=e.a(new na(g));else{for(g=H(f);(b=H(f))&&(!g.contains||g.contains(b))&&b.compareDocumentPosition(g)&8;g=b);b=e.a(new na(g))}}return b};
|
|
56
|
-
vb.prototype.toString=function(){var a="Path Expression:"+J(this.j);if(this.c.length){var b=qa(this.c,function(c,d){return c+J(d)},"Steps:");a+=J(b)}return a};function Cb(a,b){this.a=a;this.v=!!b}
|
|
57
|
-
function mb(a,b,c){for(c=c||0;c<a.a.length;c++)for(var d=a.a[c],e=G(b),f=b.o,g,l=0;g=H(e);l++){var k=a.v?f-l:l+1;g=d.a(new na(g,k,f));if("number"==typeof g)k=k==g;else if("string"==typeof g||"boolean"==typeof g)k=!!g;else if(g instanceof C)k=0<g.o;else throw Error("Predicate.evaluate returned an unexpected type.");if(!k){k=e;g=k.f;var v=k.a;if(!v)throw Error("Next must be called at least once before remove.");var r=v.b;v=v.a;r?r.a=v:g.a=v;v?v.b=r:g.b=r;g.o--;k.a=null}}return b}
|
|
58
|
-
Cb.prototype.toString=function(){return qa(this.a,function(a,b){return a+J(b)},"Predicates:")};function O(a,b,c,d){I.call(this,4);this.c=a;this.u=b;this.j=c||new Cb([]);this.C=!!d;b=this.j;b=0<b.a.length?b.a[0].f:null;a.O&&b&&(this.f={name:b.name,A:b.A});a:{a=this.j;for(b=0;b<a.a.length;b++)if(c=a.a[b],c.i||1==c.l||0==c.l){a=!0;break a}a=!1}this.i=a}m(O,I);
|
|
59
|
-
O.prototype.a=function(a){var b=a.a,c=this.f,d=null,e=null,f=0;c&&(d=c.name,e=c.A?L(c.A,a):null,f=1);if(this.C)if(this.i||this.c!=Db)if(b=G((new O(Eb,new F("node"))).a(a)),c=H(b))for(a=this.s(c,d,e,f);null!=(c=H(b));)a=Za(a,this.s(c,d,e,f));else a=new C;else a=Va(this.u,b,d,e),a=mb(this.j,a,f);else a=this.s(a.a,d,e,f);return a};O.prototype.s=function(a,b,c,d){a=this.c.B(this.u,a,b,c);return a=mb(this.j,a,d)};
|
|
60
|
-
O.prototype.toString=function(){var a="Step:"+J("Operator: "+(this.C?"//":"/"));this.c.m&&(a+=J("Axis: "+this.c));a+=J(this.u);if(this.j.a.length){var b=qa(this.j.a,function(c,d){return c+J(d)},"Predicates:");a+=J(b)}return a};function Fb(a,b,c,d){this.m=a;this.B=b;this.v=c;this.O=d}Fb.prototype.toString=function(){return this.m};var Gb={};function P(a,b,c,d){if(Gb.hasOwnProperty(a))throw Error("Axis already created: "+a);b=new Fb(a,b,c,!!d);return Gb[a]=b}
|
|
61
|
-
P("ancestor",function(a,b){for(var c=new C;b=b.parentNode;)a.a(b)&&$a(c,b);return c},!0);P("ancestor-or-self",function(a,b){var c=new C;do a.a(b)&&$a(c,b);while(b=b.parentNode);return c},!0);
|
|
62
|
-
var wb=P("attribute",function(a,b){var c=new C,d=a.f();if(b=b.attributes)if(a instanceof F&&null===a.b||"*"==d)for(a=0;d=b[a];a++)c.add(d);else(d=b.getNamedItem(d))&&c.add(d);return c},!1),Db=P("child",function(a,b,c,d,e){c=aa(c)?c:null;d=aa(d)?d:null;e=e||new C;for(b=b.firstChild;b;b=b.nextSibling)Ua(b,c,d)&&a.a(b)&&e.add(b);return e},!1,!0);P("descendant",Va,!1,!0);
|
|
63
|
-
var Eb=P("descendant-or-self",function(a,b,c,d){var e=new C;Ua(b,c,d)&&a.a(b)&&e.add(b);return Va(a,b,c,d,e)},!1,!0),Ab=P("following",function(a,b,c,d){var e=new C;do for(var f=b;f=f.nextSibling;)Ua(f,c,d)&&a.a(f)&&e.add(f),e=Va(a,f,c,d,e);while(b=b.parentNode);return e},!1,!0);P("following-sibling",function(a,b){for(var c=new C;b=b.nextSibling;)a.a(b)&&c.add(b);return c},!1);P("namespace",function(){return new C},!1);
|
|
64
|
-
var Hb=P("parent",function(a,b){var c=new C;if(9==b.nodeType)return c;if(2==b.nodeType)return c.add(b.ownerElement),c;b=b.parentNode;a.a(b)&&c.add(b);return c},!1),Bb=P("preceding",function(a,b,c,d){var e=new C,f=[];do f.unshift(b);while(b=b.parentNode);for(var g=1,l=f.length;g<l;g++){var k=[];for(b=f[g];b=b.previousSibling;)k.unshift(b);for(var v=0,r=k.length;v<r;v++)b=k[v],Ua(b,c,d)&&a.a(b)&&e.add(b),e=Va(a,b,c,d,e)}return e},!0,!0);
|
|
65
|
-
P("preceding-sibling",function(a,b){for(var c=new C;b=b.previousSibling;)a.a(b)&&$a(c,b);return c},!0);var Ib=P("self",function(a,b){var c=new C;a.a(b)&&c.add(b);return c},!1);function Jb(a){I.call(this,1);this.c=a;this.i=a.i;this.b=a.b}m(Jb,I);Jb.prototype.a=function(a){return-K(this.c,a)};Jb.prototype.toString=function(){return"Unary Expression: -"+J(this.c)};function Kb(a){I.call(this,4);this.c=a;db(this,ra(this.c,function(b){return b.i}));eb(this,ra(this.c,function(b){return b.b}))}m(Kb,I);Kb.prototype.a=function(a){var b=new C;p(this.c,function(c){c=c.a(a);if(!(c instanceof C))throw Error("Path expression must evaluate to NodeSet.");b=Za(b,c)});return b};Kb.prototype.toString=function(){return qa(this.c,function(a,b){return a+J(b)},"Union Expression:")};function Lb(a,b){this.a=a;this.b=b}function Mb(a){for(var b,c=[];;){Q(a,"Missing right hand side of binary expression.");b=Nb(a);var d=y(a.a);if(!d)break;var e=(d=kb[d]||null)&&d.H;if(!e){a.a.a--;break}for(;c.length&&e<=c[c.length-1].H;)b=new gb(c.pop(),c.pop(),b);c.push(b,d)}for(;c.length;)b=new gb(c.pop(),c.pop(),b);return b}function Q(a,b){if(Na(a.a))throw Error(b);}function Ob(a,b){a=y(a.a);if(a!=b)throw Error("Bad token, expected: "+b+" got: "+a);}
|
|
66
|
-
function Pb(a){a=y(a.a);if(")"!=a)throw Error("Bad token: "+a);}function Qb(a){a=y(a.a);if(2>a.length)throw Error("Unclosed literal string");return new sb(a)}
|
|
67
|
-
function Rb(a){var b=[];if(zb(w(a.a))){var c=y(a.a);var d=w(a.a);if("/"==c&&(Na(a.a)||"."!=d&&".."!=d&&"@"!=d&&"*"!=d&&!/(?![0-9])[\w]/.test(d)))return new xb;d=new xb;Q(a,"Missing next location step.");c=Sb(a,c);b.push(c)}else{a:{c=w(a.a);d=c.charAt(0);switch(d){case "$":throw Error("Variable reference not allowed in HTML XPath");case "(":y(a.a);c=Mb(a);Q(a,'unclosed "("');Ob(a,")");break;case '"':case "'":c=Qb(a);break;default:if(isNaN(+c))if(!rb(c)&&/(?![0-9])[\w]/.test(d)&&"("==w(a.a,1)){c=y(a.a);
|
|
68
|
-
c=qb[c]||null;y(a.a);for(d=[];")"!=w(a.a);){Q(a,"Missing function argument list.");d.push(Mb(a));if(","!=w(a.a))break;y(a.a)}Q(a,"Unclosed function argument list.");Pb(a);c=new ob(c,d)}else{c=null;break a}else c=new ub(+y(a.a))}"["==w(a.a)&&(d=new Cb(Tb(a)),c=new lb(c,d))}if(c)if(zb(w(a.a)))d=c;else return c;else c=Sb(a,"/"),d=new yb,b.push(c)}for(;zb(w(a.a));)c=y(a.a),Q(a,"Missing next location step."),c=Sb(a,c),b.push(c);return new vb(d,b)}
|
|
69
|
-
function Sb(a,b){if("/"!=b&&"//"!=b)throw Error('Step op should be "/" or "//"');if("."==w(a.a)){var c=new O(Ib,new F("node"));y(a.a);return c}if(".."==w(a.a))return c=new O(Hb,new F("node")),y(a.a),c;if("@"==w(a.a)){var d=wb;y(a.a);Q(a,"Missing attribute name")}else if("::"==w(a.a,1)){if(!/(?![0-9])[\w]/.test(w(a.a).charAt(0)))throw Error("Bad token: "+y(a.a));var e=y(a.a);d=Gb[e]||null;if(!d)throw Error("No axis with name: "+e);y(a.a);Q(a,"Missing node name")}else d=Db;e=w(a.a);if(/(?![0-9])[\w\*]/.test(e.charAt(0)))if("("==
|
|
70
|
-
w(a.a,1)){if(!rb(e))throw Error("Invalid node type: "+e);e=y(a.a);if(!rb(e))throw Error("Invalid type name: "+e);Ob(a,"(");Q(a,"Bad nodetype");var f=w(a.a).charAt(0),g=null;if('"'==f||"'"==f)g=Qb(a);Q(a,"Bad nodetype");Pb(a);e=new F(e,g)}else if(e=y(a.a),f=e.indexOf(":"),-1==f)e=new tb(e);else{g=e.substring(0,f);if("*"==g)var l="*";else if(l=a.b(g),!l)throw Error("Namespace prefix not declared: "+g);e=e.substr(f+1);e=new tb(e,l)}else throw Error("Bad token: "+y(a.a));a=new Cb(Tb(a),d.v);return c||
|
|
71
|
-
new O(d,e,a,"//"==b)}function Tb(a){for(var b=[];"["==w(a.a);){y(a.a);Q(a,"Missing predicate expression.");var c=Mb(a);b.push(c);Q(a,"Unclosed predicate expression.");Ob(a,"]")}return b}function Nb(a){if("-"==w(a.a))return y(a.a),new Jb(Nb(a));var b=Rb(a);if("|"!=w(a.a))a=b;else{for(b=[b];"|"==y(a.a);)Q(a,"Missing next union location path."),b.push(Rb(a));a.a.a--;a=new Kb(b)}return a};function Ub(a){switch(a.nodeType){case 1:return ka(Vb,a);case 9:return Ub(a.documentElement);case 11:case 10:case 6:case 12:return Wb;default:return a.parentNode?Ub(a.parentNode):Wb}}function Wb(){return null}function Vb(a,b){if(a.prefix==b)return a.namespaceURI||"http://www.w3.org/1999/xhtml";var c=a.getAttributeNode("xmlns:"+b);return c&&c.specified?c.value||null:a.parentNode&&9!=a.parentNode.nodeType?Vb(a.parentNode,b):null};function Xb(a,b){if(!a.length)throw Error("Empty XPath expression.");a=Ka(a);if(Na(a))throw Error("Invalid XPath expression.");b?ea(b)||(b=ja(b.lookupNamespaceURI,b)):b=function(){return null};var c=Mb(new Lb(a,b));if(!Na(a))throw Error("Bad token: "+y(a));this.evaluate=function(d,e){d=c.a(new na(d));return new R(d,e)}}
|
|
72
|
-
function R(a,b){if(0==b)if(a instanceof C)b=4;else if("string"==typeof a)b=2;else if("number"==typeof a)b=1;else if("boolean"==typeof a)b=3;else throw Error("Unexpected evaluation result.");if(2!=b&&1!=b&&3!=b&&!(a instanceof C))throw Error("value could not be converted to the specified type");this.resultType=b;switch(b){case 2:this.stringValue=a instanceof C?bb(a):""+a;break;case 1:this.numberValue=a instanceof C?+bb(a):+a;break;case 3:this.booleanValue=a instanceof C?0<a.o:!!a;break;case 4:case 5:case 6:case 7:var c=
|
|
73
|
-
G(a);var d=[];for(var e=H(c);e;e=H(c))d.push(e);this.snapshotLength=a.o;this.invalidIteratorState=!1;break;case 8:case 9:this.singleNodeValue=ab(a);break;default:throw Error("Unknown XPathResult type.");}var f=0;this.iterateNext=function(){if(4!=b&&5!=b)throw Error("iterateNext called with wrong result type");return f>=d.length?null:d[f++]};this.snapshotItem=function(g){if(6!=b&&7!=b)throw Error("snapshotItem called with wrong result type");return g>=d.length||0>g?null:d[g]}}R.ANY_TYPE=0;
|
|
74
|
-
R.NUMBER_TYPE=1;R.STRING_TYPE=2;R.BOOLEAN_TYPE=3;R.UNORDERED_NODE_ITERATOR_TYPE=4;R.ORDERED_NODE_ITERATOR_TYPE=5;R.UNORDERED_NODE_SNAPSHOT_TYPE=6;R.ORDERED_NODE_SNAPSHOT_TYPE=7;R.ANY_UNORDERED_NODE_TYPE=8;R.FIRST_ORDERED_NODE_TYPE=9;function Yb(a){this.lookupNamespaceURI=Ub(a)}
|
|
75
|
-
function Zb(a,b){a=a||h;var c=a.Document&&a.Document.prototype||a.document;if(!c.evaluate||b)a.XPathResult=R,c.evaluate=function(d,e,f,g){return(new Xb(d,f)).evaluate(e,g)},c.createExpression=function(d,e){return new Xb(d,e)},c.createNSResolver=function(d){return new Yb(d)}}ba("wgxpath.install",Zb);ba("wgxpath.install",Zb);var bc={aliceblue:"#f0f8ff",antiquewhite:"#faebd7",aqua:"#00ffff",aquamarine:"#7fffd4",azure:"#f0ffff",beige:"#f5f5dc",bisque:"#ffe4c4",black:"#000000",blanchedalmond:"#ffebcd",blue:"#0000ff",blueviolet:"#8a2be2",brown:"#a52a2a",burlywood:"#deb887",cadetblue:"#5f9ea0",chartreuse:"#7fff00",chocolate:"#d2691e",coral:"#ff7f50",cornflowerblue:"#6495ed",cornsilk:"#fff8dc",crimson:"#dc143c",cyan:"#00ffff",darkblue:"#00008b",darkcyan:"#008b8b",darkgoldenrod:"#b8860b",darkgray:"#a9a9a9",darkgreen:"#006400",
|
|
18
|
+
function pa(a){var b=typeof a;return b=="object"&&a!=null||b=="function"}
|
|
19
|
+
function qa(a){var b=typeof a;if(b=="object")if(a){if(a instanceof Array)return"array";if(a instanceof Object)return b;var c=Object.prototype.toString.call(a);if(c=="[object Window]")return"object";if(c=="[object Array]"||typeof a.length=="number"&&typeof a.splice!="undefined"&&typeof a.propertyIsEnumerable!="undefined"&&!a.propertyIsEnumerable("splice"))return"array";if(c=="[object Function]"||typeof a.call!="undefined"&&typeof a.propertyIsEnumerable!="undefined"&&!a.propertyIsEnumerable("call"))return"function"}else return"null";
|
|
20
|
+
else if(b=="function"&&typeof a.call=="undefined")return"object";return b}function ra(a){var b=qa(a);return b=="array"||b=="object"&&typeof a.length=="number"}function sa(a,b){function c(){}c.prototype=b.prototype;a.v=b.prototype;a.prototype=new c;a.prototype.constructor=a;a.B=function(d,f,g){for(var h=Array(arguments.length-2),t=2;t<arguments.length;t++)h[t-2]=arguments[t];return b.prototype[f].apply(d,h)}};var ta=Array.prototype.indexOf?function(a,b){return Array.prototype.indexOf.call(a,b,void 0)}:function(a,b){if(typeof a==="string")return typeof b!=="string"||b.length!=1?-1:a.indexOf(b,0);for(var c=0;c<a.length;c++)if(c in a&&a[c]===b)return c;return-1},ua=Array.prototype.forEach?function(a,b){Array.prototype.forEach.call(a,b,void 0)}:function(a,b){for(var c=a.length,d=typeof a==="string"?a.split(""):a,f=0;f<c;f++)f in d&&b.call(void 0,d[f],f,a)},va=Array.prototype.map?function(a,b){return Array.prototype.map.call(a,
|
|
21
|
+
b,void 0)}:function(a,b){for(var c=a.length,d=Array(c),f=typeof a==="string"?a.split(""):a,g=0;g<c;g++)g in f&&(d[g]=b.call(void 0,f[g],g,a));return d};var wa={aliceblue:"#f0f8ff",antiquewhite:"#faebd7",aqua:"#00ffff",aquamarine:"#7fffd4",azure:"#f0ffff",beige:"#f5f5dc",bisque:"#ffe4c4",black:"#000000",blanchedalmond:"#ffebcd",blue:"#0000ff",blueviolet:"#8a2be2",brown:"#a52a2a",burlywood:"#deb887",cadetblue:"#5f9ea0",chartreuse:"#7fff00",chocolate:"#d2691e",coral:"#ff7f50",cornflowerblue:"#6495ed",cornsilk:"#fff8dc",crimson:"#dc143c",cyan:"#00ffff",darkblue:"#00008b",darkcyan:"#008b8b",darkgoldenrod:"#b8860b",darkgray:"#a9a9a9",darkgreen:"#006400",
|
|
76
22
|
darkgrey:"#a9a9a9",darkkhaki:"#bdb76b",darkmagenta:"#8b008b",darkolivegreen:"#556b2f",darkorange:"#ff8c00",darkorchid:"#9932cc",darkred:"#8b0000",darksalmon:"#e9967a",darkseagreen:"#8fbc8f",darkslateblue:"#483d8b",darkslategray:"#2f4f4f",darkslategrey:"#2f4f4f",darkturquoise:"#00ced1",darkviolet:"#9400d3",deeppink:"#ff1493",deepskyblue:"#00bfff",dimgray:"#696969",dimgrey:"#696969",dodgerblue:"#1e90ff",firebrick:"#b22222",floralwhite:"#fffaf0",forestgreen:"#228b22",fuchsia:"#ff00ff",gainsboro:"#dcdcdc",
|
|
77
23
|
ghostwhite:"#f8f8ff",gold:"#ffd700",goldenrod:"#daa520",gray:"#808080",green:"#008000",greenyellow:"#adff2f",grey:"#808080",honeydew:"#f0fff0",hotpink:"#ff69b4",indianred:"#cd5c5c",indigo:"#4b0082",ivory:"#fffff0",khaki:"#f0e68c",lavender:"#e6e6fa",lavenderblush:"#fff0f5",lawngreen:"#7cfc00",lemonchiffon:"#fffacd",lightblue:"#add8e6",lightcoral:"#f08080",lightcyan:"#e0ffff",lightgoldenrodyellow:"#fafad2",lightgray:"#d3d3d3",lightgreen:"#90ee90",lightgrey:"#d3d3d3",lightpink:"#ffb6c1",lightsalmon:"#ffa07a",
|
|
78
24
|
lightseagreen:"#20b2aa",lightskyblue:"#87cefa",lightslategray:"#778899",lightslategrey:"#778899",lightsteelblue:"#b0c4de",lightyellow:"#ffffe0",lime:"#00ff00",limegreen:"#32cd32",linen:"#faf0e6",magenta:"#ff00ff",maroon:"#800000",mediumaquamarine:"#66cdaa",mediumblue:"#0000cd",mediumorchid:"#ba55d3",mediumpurple:"#9370db",mediumseagreen:"#3cb371",mediumslateblue:"#7b68ee",mediumspringgreen:"#00fa9a",mediumturquoise:"#48d1cc",mediumvioletred:"#c71585",midnightblue:"#191970",mintcream:"#f5fffa",mistyrose:"#ffe4e1",
|
|
79
25
|
moccasin:"#ffe4b5",navajowhite:"#ffdead",navy:"#000080",oldlace:"#fdf5e6",olive:"#808000",olivedrab:"#6b8e23",orange:"#ffa500",orangered:"#ff4500",orchid:"#da70d6",palegoldenrod:"#eee8aa",palegreen:"#98fb98",paleturquoise:"#afeeee",palevioletred:"#db7093",papayawhip:"#ffefd5",peachpuff:"#ffdab9",peru:"#cd853f",pink:"#ffc0cb",plum:"#dda0dd",powderblue:"#b0e0e6",purple:"#800080",red:"#ff0000",rosybrown:"#bc8f8f",royalblue:"#4169e1",saddlebrown:"#8b4513",salmon:"#fa8072",sandybrown:"#f4a460",seagreen:"#2e8b57",
|
|
80
|
-
seashell:"#fff5ee",sienna:"#a0522d",silver:"#c0c0c0",skyblue:"#87ceeb",slateblue:"#6a5acd",slategray:"#708090",slategrey:"#708090",snow:"#fffafa",springgreen:"#00ff7f",steelblue:"#4682b4",tan:"#d2b48c",teal:"#008080",thistle:"#d8bfd8",tomato:"#ff6347",turquoise:"#40e0d0",violet:"#ee82ee",wheat:"#f5deb3",white:"#ffffff",whitesmoke:"#f5f5f5",yellow:"#ffff00",yellowgreen:"#9acd32"};var
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
function
|
|
85
|
-
if(!d&&(d=
|
|
86
|
-
function
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
function
|
|
90
|
-
a.defaultView:window)||window).document,a="CSS1Compat"
|
|
91
|
-
function
|
|
92
|
-
function
|
|
93
|
-
typeof
|
|
94
|
-
function
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
Rc.prototype.set=function(a,b){Object.prototype.hasOwnProperty.call(this.b,a)||(this.f++,this.a.push(a));this.b[a]=b};var Tc={};function Z(a,b,c){fa(a)&&(a=a.g);a=new Uc(a);!b||b in Tc&&!c||(Tc[b]={key:a,shift:!1},c&&(Tc[c]={key:a,shift:!0}));return a}function Uc(a){this.code=a}Z(8);Z(9);Z(13);var Vc=Z(16),Wc=Z(17),Xc=Z(18);Z(19);Z(20);Z(27);Z(32," ");Z(33);Z(34);Z(35);Z(36);Z(37);Z(38);Z(39);Z(40);Z(44);Z(45);Z(46);Z(48,"0",")");Z(49,"1","!");Z(50,"2","@");Z(51,"3","#");Z(52,"4","$");Z(53,"5","%");Z(54,"6","^");Z(55,"7","&");Z(56,"8","*");Z(57,"9","(");Z(65,"a","A");Z(66,"b","B");Z(67,"c","C");Z(68,"d","D");
|
|
105
|
-
Z(69,"e","E");Z(70,"f","F");Z(71,"g","G");Z(72,"h","H");Z(73,"i","I");Z(74,"j","J");Z(75,"k","K");Z(76,"l","L");Z(77,"m","M");Z(78,"n","N");Z(79,"o","O");Z(80,"p","P");Z(81,"q","Q");Z(82,"r","R");Z(83,"s","S");Z(84,"t","T");Z(85,"u","U");Z(86,"v","V");Z(87,"w","W");Z(88,"x","X");Z(89,"y","Y");Z(90,"z","Z");var Yc=Z(Ia?{h:91,g:91}:Ha?{h:224,g:91}:{h:0,g:91});Z(Ia?{h:92,g:92}:Ha?{h:224,g:93}:{h:0,g:92});Z(Ia?{h:93,g:93}:Ha?{h:0,g:0}:{h:93,g:null});Z({h:96,g:96},"0");Z({h:97,g:97},"1");
|
|
106
|
-
Z({h:98,g:98},"2");Z({h:99,g:99},"3");Z({h:100,g:100},"4");Z({h:101,g:101},"5");Z({h:102,g:102},"6");Z({h:103,g:103},"7");Z({h:104,g:104},"8");Z({h:105,g:105},"9");Z({h:106,g:106},"*");Z({h:107,g:107},"+");Z({h:109,g:109},"-");Z({h:110,g:110},".");Z({h:111,g:111},"/");Z(144);Z(112);Z(113);Z(114);Z(115);Z(116);Z(117);Z(118);Z(119);Z(120);Z(121);Z(122);Z(123);Z({h:107,g:187},"=","+");Z(108,",");Z({h:109,g:189},"-","_");Z(188,",","<");Z(190,".",">");Z(191,"/","?");Z(192,"`","~");Z(219,"[","{");
|
|
107
|
-
Z(220,"\\","|");Z(221,"]","}");Z({h:59,g:186},";",":");Z(222,"'",'"');var Zc=new Rc;Zc.set(1,Vc);Zc.set(2,Wc);Zc.set(4,Xc);Zc.set(8,Yc);(function(a){var b=new Rc;p(Sc(a),function(c){b.set(a.get(c).code,c)});return b})(Zc);function $c(a,b){a:if("scroll"==Bc(a,b)){if(a.scrollIntoView&&(a.scrollIntoView(),"none"==Bc(a,b)))break a;for(var c=Cc(a,b),d=yc(a);d;d=yc(d)){var e=d,f=Dc(e);var g=e;var l=xc(g,"borderLeftWidth");var k=xc(g,"borderRightWidth");var v=xc(g,"borderTopWidth");g=xc(g,"borderBottomWidth");k=new wc(parseFloat(v),parseFloat(k),parseFloat(g),parseFloat(l));l=c.a-f.a-k.a;f=c.b-f.b-k.b;k=e.clientHeight+c.b-c.c;e.scrollLeft+=Math.min(l,Math.max(l-(e.clientWidth+c.a-c.f),0));e.scrollTop+=Math.min(f,Math.max(f-
|
|
108
|
-
k,0))}Bc(a,b)}a=Cc(a,b);return new z(a.a,a.b)};ba("se_exportedFunctionSymbol",function(a,b){a=[a];try{var c;b?c=Jc(b.WINDOW):c=window;var d=Ic(a,c.document),e=$c.apply(null,d);var f={status:0,value:Gc(e)}}catch(g){f={status:u(g,"code")?g.code:13,value:{message:g.message}}}return Fc(f)});; return this.se_exportedFunctionSymbol.apply(null,arguments);}).apply(window, arguments);}
|
|
26
|
+
seashell:"#fff5ee",sienna:"#a0522d",silver:"#c0c0c0",skyblue:"#87ceeb",slateblue:"#6a5acd",slategray:"#708090",slategrey:"#708090",snow:"#fffafa",springgreen:"#00ff7f",steelblue:"#4682b4",tan:"#d2b48c",teal:"#008080",thistle:"#d8bfd8",tomato:"#ff6347",turquoise:"#40e0d0",violet:"#ee82ee",wheat:"#f5deb3",white:"#ffffff",whitesmoke:"#f5f5f5",yellow:"#ffff00",yellowgreen:"#9acd32"};var xa="backgroundColor borderTopColor borderRightColor borderBottomColor borderLeftColor color outlineColor".split(" "),ya=/#([0-9a-fA-F])([0-9a-fA-F])([0-9a-fA-F])/,za=/^#(?:[0-9a-f]{3}){1,2}$/i,Aa=/^(?:rgba)?\((\d{1,3}),\s?(\d{1,3}),\s?(\d{1,3}),\s?(0|1|0\.\d*)\)$/i,Ba=/^(?:rgb)?\((0|[1-9]\d{0,2}),\s?(0|[1-9]\d{0,2}),\s?(0|[1-9]\d{0,2})\)$/i;function v(a,b){this.code=a;this.g=w[a]||x;this.message=b||"";a=this.g.replace(/((?:^|\s+)[a-z])/g,function(c){return c.toUpperCase().replace(/^[\s\xa0]+/g,"")});b=a.length-5;if(b<0||a.indexOf("Error",b)!=b)a+="Error";this.name=a;a=Error(this.message);a.name=this.name;this.stack=a.stack||""}sa(v,Error);var x="unknown error",w={15:"element not selectable",11:"element not visible"};w[31]=x;w[30]=x;w[24]="invalid cookie domain";w[29]="invalid element coordinates";w[12]="invalid element state";
|
|
27
|
+
w[32]="invalid selector";w[51]="invalid selector";w[52]="invalid selector";w[17]="javascript error";w[405]="unsupported operation";w[34]="move target out of bounds";w[27]="no such alert";w[7]="no such element";w[8]="no such frame";w[23]="no such window";w[28]="script timeout";w[33]="session not created";w[10]="stale element reference";w[21]="timeout";w[25]="unable to set cookie";w[26]="unexpected alert open";w[13]=x;w[9]="unknown command";var Ea=na.A&&String.prototype.trim?function(a){return a.trim()}:function(a){return/^[\s\xa0]*([\s\S]*?)[\s\xa0]*$/.exec(a)[1]};function Fa(a,b){var c={},d;for(d in a)b.call(void 0,a[d],d,a)&&(c[d]=a[d]);return c}function Ga(a,b){var c={},d;for(d in a)c[d]=b.call(void 0,a[d],d,a);return c}function A(a,b){return a!==null&&b in a}function Ha(a,b){for(var c in a)if(b.call(void 0,a[c],c,a))return c};function Ia(){var a=q.navigator;return a&&(a=a.userAgent)?a:""}function B(a){return Ia().indexOf(a)!=-1};function Ja(){return B("Firefox")||B("FxiOS")}function Ka(){return(B("Chrome")||B("CriOS"))&&!B("Edge")||B("Silk")};function La(a){return String(a).replace(/\-([a-z])/g,function(b,c){return c.toUpperCase()})};function C(){return B("iPhone")&&!B("iPod")&&!B("iPad")};var Ma=B("Macintosh"),Na=B("Windows");var Oa=Ja(),Pa=C()||B("iPod"),Qa=B("iPad"),Ra=B("Android")&&!(Ka()||Ja()||B("Opera")||B("Silk")),Sa=Ka(),Ta=B("Safari")&&!(Ka()||B("Coast")||B("Opera")||B("Edge")||B("Edg/")||B("OPR")||Ja()||B("Silk")||B("Android"))&&!(C()||B("iPad")||B("iPod"));function D(a){return(a=a.exec(Ia()))?a[1]:""}(function(){if(Oa)return D(/Firefox\/([0-9.]+)/);if(Sa){if(C()||B("iPad")||B("iPod")||B("Macintosh")){var a=D(/CriOS\/([0-9.]+)/);if(a)return a}return D(/Chrome\/([0-9.]+)/)}if(Ta&&!(C()||B("iPad")||B("iPod")))return D(/Version\/([0-9.]+)/);if(Pa||Qa){if(a=/Version\/(\S+).*Mobile\/(\S+)/.exec(Ia()))return a[1]+"."+a[2]}else if(Ra)return(a=D(/Android\s+([0-9.]+)/))?a:D(/Version\/([0-9.]+)/);return""})();function E(a,b){this.x=a!==void 0?a:0;this.y=b!==void 0?b:0}E.prototype.ceil=function(){this.x=Math.ceil(this.x);this.y=Math.ceil(this.y);return this};E.prototype.floor=function(){this.x=Math.floor(this.x);this.y=Math.floor(this.y);return this};E.prototype.round=function(){this.x=Math.round(this.x);this.y=Math.round(this.y);return this};E.prototype.scale=function(a,b){this.x*=a;this.y*=typeof b==="number"?b:a;return this};function Ua(a,b){this.width=a;this.height=b}e=Ua.prototype;e.aspectRatio=function(){return this.width/this.height};e.ceil=function(){this.width=Math.ceil(this.width);this.height=Math.ceil(this.height);return this};e.floor=function(){this.width=Math.floor(this.width);this.height=Math.floor(this.height);return this};e.round=function(){this.width=Math.round(this.width);this.height=Math.round(this.height);return this};e.scale=function(a,b){this.width*=a;this.height*=typeof b==="number"?b:a;return this};function F(a){return a.nodeType==9?a:a.ownerDocument||a.document}function Va(a,b){a&&(a=a.parentNode);for(var c=0;a&&!b(a);)a=a.parentNode,c++}function Wa(a){this.g=a||q.document||document};function G(a,b){b&&typeof b!=="string"&&(b=b.toString());return a instanceof HTMLFormElement?!!a&&a.nodeType==1&&(!b||"FORM"==b):!!a&&a.nodeType==1&&(!b||a.tagName.toUpperCase()==b)};var Xa={u:function(a,b){if(!a)throw new v(32,"No selector specified");a=Ea(a);try{var c=b.querySelector(a)}catch(d){throw new v(32,"An invalid or illegal selector was specified");}return c&&c.nodeType==1?c:null},D:function(a,b){if(!a)throw new v(32,"No selector specified");a=Ea(a);try{return b.querySelectorAll(a)}catch(c){throw new v(32,"An invalid or illegal selector was specified");}}};function H(a,b,c,d){this.top=a;this.g=b;this.h=c;this.left=d}H.prototype.ceil=function(){this.top=Math.ceil(this.top);this.g=Math.ceil(this.g);this.h=Math.ceil(this.h);this.left=Math.ceil(this.left);return this};H.prototype.floor=function(){this.top=Math.floor(this.top);this.g=Math.floor(this.g);this.h=Math.floor(this.h);this.left=Math.floor(this.left);return this};
|
|
28
|
+
H.prototype.round=function(){this.top=Math.round(this.top);this.g=Math.round(this.g);this.h=Math.round(this.h);this.left=Math.round(this.left);return this};H.prototype.scale=function(a,b){b=typeof b==="number"?b:a;this.left*=a;this.g*=a;this.top*=b;this.h*=b;return this};function I(a,b,c,d){this.left=a;this.top=b;this.width=c;this.height=d}I.prototype.ceil=function(){this.left=Math.ceil(this.left);this.top=Math.ceil(this.top);this.width=Math.ceil(this.width);this.height=Math.ceil(this.height);return this};I.prototype.floor=function(){this.left=Math.floor(this.left);this.top=Math.floor(this.top);this.width=Math.floor(this.width);this.height=Math.floor(this.height);return this};
|
|
29
|
+
I.prototype.round=function(){this.left=Math.round(this.left);this.top=Math.round(this.top);this.width=Math.round(this.width);this.height=Math.round(this.height);return this};I.prototype.scale=function(a,b){b=typeof b==="number"?b:a;this.left*=a;this.width*=a;this.top*=b;this.height*=b;return this};function J(a,b){var c=F(a);return c.defaultView&&c.defaultView.getComputedStyle&&(a=c.defaultView.getComputedStyle(a,null))?a[b]||a.getPropertyValue(b)||"":""};function K(a){for(a=a.parentNode;a&&a.nodeType!=1&&a.nodeType!=9&&a.nodeType!=11;)a=a.parentNode;return G(a)?a:null}
|
|
30
|
+
function L(a,b){b=La(b);if(b=="float"||b=="cssFloat"||b=="styleFloat")b="cssFloat";a=J(a,b)||Ya(a,b);if(a===null)a=null;else if(ta(xa,b)>=0){b:{var c=a.match(Aa);if(c){b=Number(c[1]);var d=Number(c[2]),f=Number(c[3]);c=Number(c[4]);if(b>=0&&b<=255&&d>=0&&d<=255&&f>=0&&f<=255&&c>=0&&c<=1){b=[b,d,f,c];break b}}b=null}if(!b)b:{if(f=a.match(Ba))if(b=Number(f[1]),d=Number(f[2]),f=Number(f[3]),b>=0&&b<=255&&d>=0&&d<=255&&f>=0&&f<=255){b=[b,d,f,1];break b}b=null}if(!b)b:{b=a.toLowerCase();d=wa[b.toLowerCase()];
|
|
31
|
+
if(!d&&(d=b.charAt(0)=="#"?b:"#"+b,d.length==4&&(d=d.replace(ya,"#$1$1$2$2$3$3")),!za.test(d))){b=null;break b}b=[parseInt(d.substr(1,2),16),parseInt(d.substr(3,2),16),parseInt(d.substr(5,2),16),1]}a=b?"rgba("+b.join(", ")+")":a}return a}function Ya(a,b){var c=a.currentStyle||a.style,d=c[b];d===void 0&&typeof c.getPropertyValue==="function"&&(d=c.getPropertyValue(b));return d!="inherit"?d!==void 0?d:null:(a=K(a))?Ya(a,b):null}
|
|
32
|
+
function M(a,b){function c(m){function n(ia){if(ia==h)return!0;var Ca=L(ia,"display");return Ca.lastIndexOf("inline",0)==0||Ca=="contents"||Da=="absolute"&&L(ia,"position")=="static"?!1:!0}var Da=L(m,"position");if(Da=="fixed")return S=!0,m==h?null:h;for(m=K(m);m&&!n(m);)m=K(m);return m}function d(m){var n=m;if(y=="visible")if(m==h&&t)n=t;else if(m==t)return{x:"visible",y:"visible"};n={x:L(n,"overflow-x"),y:L(n,"overflow-y")};m==h&&(n.x=n.x=="visible"?"auto":n.x,n.y=n.y=="visible"?"auto":n.y);return n}
|
|
33
|
+
function f(m){if(m==h){var n=(new Wa(g)).g;m=n.scrollingElement?n.scrollingElement:n.body||n.documentElement;n=n.parentWindow||n.defaultView;m=new E(n.pageXOffset||m.scrollLeft,n.pageYOffset||m.scrollTop)}else m=new E(m.scrollLeft,m.scrollTop);return m}b=Za(a,b);var g=F(a),h=g.documentElement,t=g.body,y=L(h,"overflow"),S;for(a=c(a);a;a=c(a)){var r=d(a);if(r.x!="visible"||r.y!="visible"){var u=N(a);if(u.width==0||u.height==0)return"hidden";var z=b.g<u.left,U=b.h<u.top;if(z&&r.x=="hidden"||U&&r.y==
|
|
34
|
+
"hidden")return"hidden";if(z&&r.x!="visible"||U&&r.y!="visible"){z=f(a);U=b.h<u.top-z.y;if(b.g<u.left-z.x&&r.x!="visible"||U&&r.x!="visible")return"hidden";b=M(a);return b=="hidden"?"hidden":"scroll"}z=b.left>=u.left+u.width;u=b.top>=u.top+u.height;if(z&&r.x=="hidden"||u&&r.y=="hidden")return"hidden";if(z&&r.x!="visible"||u&&r.y!="visible"){if(S&&(r=f(a),b.left>=h.scrollWidth-r.x||b.g>=h.scrollHeight-r.y))return"hidden";b=M(a);return b=="hidden"?"hidden":"scroll"}}}return"none"}
|
|
35
|
+
function N(a){var b;var c=G(a,"MAP");if(c||G(a,"AREA")){var d=c?a:G(a.parentNode,"MAP")?a.parentNode:null,f=b=null;if(d&&d.name&&(b=Xa.u('*[usemap="#'+d.name+'"]',F(d)))&&(f=N(b),!c&&a.shape.toLowerCase()!="default")){c=$a(a);d=Math.min(Math.max(c.left,0),f.width);var g=Math.min(Math.max(c.top,0),f.height);f=new I(d+f.left,g+f.top,Math.min(c.width,f.width-d),Math.min(c.height,f.height-g))}b={image:b,rect:f||new I(0,0,0,0)}}else b=null;if(b)return b.rect;if(G(a,"HTML"))return a=F(a),a=((a?a.parentWindow||
|
|
36
|
+
a.defaultView:window)||window).document,a=a.compatMode=="CSS1Compat"?a.documentElement:a.body,a=new Ua(a.clientWidth,a.clientHeight),new I(0,0,a.width,a.height);try{var h=a.getBoundingClientRect()}catch(t){return new I(0,0,0,0)}return new I(h.left,h.top,h.right-h.left,h.bottom-h.top)}
|
|
37
|
+
function $a(a){var b=a.shape.toLowerCase();a=a.coords.split(",");if(b=="rect"&&a.length==4){b=a[0];var c=a[1];return new I(b,c,a[2]-b,a[3]-c)}if(b=="circle"&&a.length==3)return b=a[2],new I(a[0]-b,a[1]-b,2*b,2*b);if(b=="poly"&&a.length>2){b=a[0];c=a[1];for(var d=b,f=c,g=2;g+1<a.length;g+=2)b=Math.min(b,a[g]),d=Math.max(d,a[g]),c=Math.min(c,a[g+1]),f=Math.max(f,a[g+1]);return new I(b,c,d-b,f-c)}return new I(0,0,0,0)}
|
|
38
|
+
function Za(a,b){a=N(a);a=new H(a.top,a.left+a.width,a.top+a.height,a.left);b&&(b=b instanceof I?b:new I(b.x,b.y,1,1),a.left=Math.min(Math.max(a.left+b.left,a.left),a.g),a.top=Math.min(Math.max(a.top+b.top,a.top),a.h),a.g=Math.min(Math.max(a.left+b.width,a.left),a.g),a.h=Math.min(Math.max(a.top+b.height,a.top),a.h));return a};var ab=q.JSON.stringify;function bb(a){function b(c,d){switch(qa(c)){case "string":case "number":case "boolean":return c;case "function":return c.toString();case "array":return va(c,function(g){return b(g,d)});case "object":if(d.indexOf(c)>=0)throw new v(17,"Recursive object cannot be transferred");if(A(c,"nodeType")&&(c.nodeType==1||c.nodeType==9)){var f={};f.ELEMENT=cb(c);return f}if(A(c,"document"))return f={},f.WINDOW=cb(c),f;d.push(c);if(ra(c))return va(c,function(g){return b(g,d)});c=Fa(c,function(g,h){return typeof h===
|
|
39
|
+
"number"||typeof h==="string"});return Ga(c,function(g){return b(g,d)});default:return null}}return b(a,[])}function db(a,b){return Array.isArray(a)?va(a,function(c){return db(c,b)}):pa(a)?typeof a=="function"?a:A(a,"ELEMENT")?eb(a.ELEMENT,b):A(a,"WINDOW")?eb(a.WINDOW,b):Ga(a,function(c){return db(c,b)}):a}function fb(a){a=a||document;var b=a.$wdc_;b||(b=a.$wdc_={},b.s=Date.now());b.s||(b.s=Date.now());return b}
|
|
40
|
+
function cb(a){var b=fb(a.ownerDocument),c=Ha(b,function(d){return d==a});c||(c=":wdc:"+b.s++,b[c]=a);return c}
|
|
41
|
+
function eb(a,b){a=decodeURIComponent(a);b=b||document;var c=fb(b);if(!A(c,a))throw new v(10,"Element does not exist in cache");var d=c[a];if(A(d,"setInterval")){if(d.closed)throw delete c[a],new v(23,"Window has been closed.");return d}for(var f=d;f;){if(f==b.documentElement)return d;f.host&&f.nodeType===11&&(f=f.host);f=f.parentNode}delete c[a];throw new v(10,"Element is no longer attached to the DOM");};function gb(){this.g=oa.document.documentElement;var a=F(this.g);try{var b=a&&a.activeElement;var c=b&&b.nodeName?b:null}catch(d){c=null}c&&hb(this,c)}function hb(a,b){a.g=b;G(b,"OPTION")&&Va(b,function(c){return G(c,"SELECT")})};function ib(a,b){this.g=a[q.Symbol.iterator]();this.h=b}ib.prototype[Symbol.iterator]=function(){return this};ib.prototype.next=function(){var a=this.g.next();return{value:a.done?void 0:this.h.call(void 0,a.value),done:a.done}};function jb(a,b){return new ib(a,b)};function O(){}O.prototype.next=function(){return kb};var kb={done:!0,value:void 0};O.prototype.l=function(){return this};function lb(a){if(a instanceof P||a instanceof Q||a instanceof R)return a;if(typeof a.next=="function")return new P(function(){return a});if(typeof a[Symbol.iterator]=="function")return new P(function(){return a[Symbol.iterator]()});if(typeof a.l=="function")return new P(function(){return a.l()});throw Error("Not an iterator or iterable.");}function P(a){this.g=a}P.prototype.l=function(){return new Q(this.g())};P.prototype[Symbol.iterator]=function(){return new R(this.g())};P.prototype.h=function(){return new R(this.g())};
|
|
42
|
+
function Q(a){this.g=a}la(Q,O);Q.prototype.next=function(){return this.g.next()};Q.prototype[Symbol.iterator]=function(){return new R(this.g)};Q.prototype.h=function(){return new R(this.g)};function R(a){P.call(this,function(){return a});this.m=a}la(R,P);R.prototype.next=function(){return this.m.next()};function T(a,b){this.h={};this.g=[];this.m=this.size=0;var c=arguments.length;if(c>1){if(c%2)throw Error("Uneven number of arguments");for(var d=0;d<c;d+=2)this.set(arguments[d],arguments[d+1])}else if(a)if(a instanceof T)for(c=mb(a),d=0;d<c.length;d++)this.set(c[d],a.get(c[d]));else for(d in a)this.set(d,a[d])}function mb(a){nb(a);return a.g.concat()}e=T.prototype;e.has=function(a){return Object.prototype.hasOwnProperty.call(this.h,a)};
|
|
43
|
+
function nb(a){if(a.size!=a.g.length){for(var b=0,c=0;b<a.g.length;){var d=a.g[b];Object.prototype.hasOwnProperty.call(a.h,d)&&(a.g[c++]=d);b++}a.g.length=c}if(a.size!=a.g.length){var f={};for(c=b=0;b<a.g.length;)d=a.g[b],Object.prototype.hasOwnProperty.call(f,d)||(a.g[c++]=d,f[d]=1),b++;a.g.length=c}}e.get=function(a,b){return Object.prototype.hasOwnProperty.call(this.h,a)?this.h[a]:b};
|
|
44
|
+
e.set=function(a,b){Object.prototype.hasOwnProperty.call(this.h,a)||(this.size+=1,this.g.push(a),this.m++);this.h[a]=b};e.forEach=function(a,b){for(var c=mb(this),d=0;d<c.length;d++){var f=c[d],g=this.get(f);a.call(b,g,f,this)}};e.keys=function(){return lb(this.l(!0)).h()};e.values=function(){return lb(this.l(!1)).h()};e.entries=function(){var a=this;return jb(this.keys(),function(b){return[b,a.get(b)]})};
|
|
45
|
+
e.l=function(a){nb(this);var b=0,c=this.m,d=this,f=new O;f.next=function(){if(c!=d.m)throw Error("The map has changed since the iterator was created");if(b>=d.g.length)return kb;var g=d.g[b++];return{value:a?g:d.h[g],done:!1}};return f};var ob={};function V(a,b,c){pa(a)&&(a=a.i);a=new pb(a);!b||b in ob&&!c||(ob[b]={key:a,shift:!1},c&&(ob[c]={key:a,shift:!0}));return a}function pb(a){this.code=a}V(8);V(9);V(13);var qb=V(16),rb=V(17),sb=V(18);V(19);V(20);V(27);V(32," ");V(33);V(34);V(35);V(36);V(37);V(38);V(39);V(40);V(44);V(45);V(46);V(48,"0",")");V(49,"1","!");V(50,"2","@");V(51,"3","#");V(52,"4","$");V(53,"5","%");V(54,"6","^");V(55,"7","&");V(56,"8","*");V(57,"9","(");V(65,"a","A");V(66,"b","B");V(67,"c","C");V(68,"d","D");
|
|
46
|
+
V(69,"e","E");V(70,"f","F");V(71,"g","G");V(72,"h","H");V(73,"i","I");V(74,"j","J");V(75,"k","K");V(76,"l","L");V(77,"m","M");V(78,"n","N");V(79,"o","O");V(80,"p","P");V(81,"q","Q");V(82,"r","R");V(83,"s","S");V(84,"t","T");V(85,"u","U");V(86,"v","V");V(87,"w","W");V(88,"x","X");V(89,"y","Y");V(90,"z","Z");var tb=V(Na?{j:91,i:91}:Ma?{j:224,i:91}:{j:0,i:91});V(Na?{j:92,i:92}:Ma?{j:224,i:93}:{j:0,i:92});V(Na?{j:93,i:93}:Ma?{j:0,i:0}:{j:93,i:null});V({j:96,i:96},"0");V({j:97,i:97},"1");
|
|
47
|
+
V({j:98,i:98},"2");V({j:99,i:99},"3");V({j:100,i:100},"4");V({j:101,i:101},"5");V({j:102,i:102},"6");V({j:103,i:103},"7");V({j:104,i:104},"8");V({j:105,i:105},"9");V({j:106,i:106},"*");V({j:107,i:107},"+");V({j:109,i:109},"-");V({j:110,i:110},".");V({j:111,i:111},"/");V(144);V(112);V(113);V(114);V(115);V(116);V(117);V(118);V(119);V(120);V(121);V(122);V(123);V({j:107,i:187},"=","+");V(108,",");V({j:109,i:189},"-","_");V(188,",","<");V(190,".",">");V(191,"/","?");V(192,"`","~");V(219,"[","{");
|
|
48
|
+
V(220,"\\","|");V(221,"]","}");V({j:59,i:186},";",":");V(222,"'",'"');var W=new T;W.set(1,qb);W.set(2,rb);W.set(4,sb);W.set(8,tb);(function(a){var b=new T;ua(mb(a),function(c){b.set(a.get(c).code,c)});return b})(W);function ub(){gb.call(this)}sa(ub,gb);(function(a){a.o=void 0;a.C=function(){return a.o?a.o:a.o=new a}})(ub);function vb(a,b){a:if(M(a,b)=="scroll"){if(a.scrollIntoView&&(a.scrollIntoView(),"none"==M(a,b)))break a;for(var c=Za(a,b),d=K(a);d;d=K(d)){var f=d,g=N(f);var h=f;var t=J(h,"borderLeftWidth");var y=J(h,"borderRightWidth");var S=J(h,"borderTopWidth");h=J(h,"borderBottomWidth");y=new H(parseFloat(S),parseFloat(y),parseFloat(h),parseFloat(t));t=c.left-g.left-y.left;g=c.top-g.top-y.top;y=f.clientHeight+c.top-c.h;f.scrollLeft+=Math.min(t,Math.max(t-(f.clientWidth+c.left-c.g),0));f.scrollTop+=Math.min(g,
|
|
49
|
+
Math.max(g-y,0))}M(a,b)}a=Za(a,b);return new E(a.left,a.top)};function wb(a,b){a=[a];try{var c;b?c=eb(b.WINDOW):c=window;var d=db(a,c.document),f=vb.apply(null,d);var g={status:0,value:bb(f)}}catch(h){g={status:A(h,"code")?h.code:13,value:{message:h.message}}}return ab(g)}var X=["se_exportedFunctionSymbol"],Y=q;X[0]in Y||typeof Y.execScript=="undefined"||Y.execScript("var "+X[0]);for(var Z;X.length&&(Z=X.shift());)X.length||wb===void 0?Y[Z]&&Y[Z]!==Object.prototype[Z]?Y=Y[Z]:Y=Y[Z]={}:Y[Z]=wb;; return this.se_exportedFunctionSymbol.apply(null,arguments);}).apply(window, arguments);}
|