J'ai maintenant une version de mon web proxy qui s'interface au profileur de type. Cela permet donc de profiler le code JS qui est contenu sur les pages visitées par le browser de notre choix (pour l'instant j'ai seulement testé avec Safari avec des exemples simples). Voici la doc (venant du fichier photon/source/proxy/js-proxy.scm):
;; To use this proxy: ;; ;; 1) Install the Gambit Scheme system (see http://gambit.iro.umontreal.ca) ;; ;; 2) Run the proxy with the command: ;; ;; % cd photon/source/proxy ;; % ./js-proxy.scm ;; ;; 3) Configure your browser to use the proxy. This will depend on your ;; operating system. If the proxy is running on the same machine as ;; the web browser then the proxy is running at "localhost:8000". ;; ;; On Mac OS X, the proxy setting is in the System Preferences ;; "Network" panel. Click "Advanced...", then select the "Proxies" ;; tab, and check "Web Proxy" then enter the Web Proxy Server address ;; 127.0.0.1 and the port 8000. ;; ;; 4) Visit a web page containing JavaScript code. Currently this has ;; only been tested on HTML code containing one <script> tag. ;; ;; 5) The execution profile will appear in the window after a delay ;; of 5 seconds. This is a crude way of displaying the profiler ;; report, but good-enough for now.
Voici un exemple. Soit le fichier test.html suivant:
--------8<-------------8<-------------8<-------------8<-------------8<----- <html> <head> <title>JavaScript profiling test</title> </head>
<body>
<script>
function Foo(i) { this.a = 11; this.width = i; } function Bar(j) { this.b = 22; this.width = j; } function f(obj) { document.write(obj.width); }
var p = new Foo(111); var q = new Bar(222);
p[1] = 11; p[2] = 22;
f(p); f(q);
f(document);
</script>
<h1>This HTML file contains JavaScript code</h1>
</body> </html> --------8<-------------8<-------------8<-------------8<-------------8<-----
Lorsque le browser visite ce fichier, après 5 secondes la fenêtre est remplacée par le rapport suivant (la partie intéressante est à la toute fin):
--------------------------- TYPE PROFILE fetch_counter = 6 store_counter = 6 obj_counter = 3 new_counter = 2 map_counter = 154 hit_counter = 2 miss_counter = 10
map[0] = {} map[1] = {a} map[2] = {a,width} map[3] = {b} map[4] = {b,width} map[5] = {0..1,a,width} map[6] = {0..2,a,width} map[7] = {bgColor} map[8] = {bgColor,alinkColor} map[9] = {bgColor,alinkColor,width} map[10] = {bgColor,alinkColor,width,plugins} map[11] = {bgColor,alinkColor,width,plugins,height} map[12] = {bgColor,alinkColor,width,plugins,height,fgColor} map[13] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor} map[14] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all} map[15] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds} map[16] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts} map[17] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode} map[18] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement} map[19] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir} map[20] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode} map[21] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor} map[22] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement} map[23] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet} map[24] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion} map[25] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location} map[26] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding} map[27] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation} map[28] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer} map[29] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed} map[30] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head} map[31] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView} map[32] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain} map[33] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified} map[34] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors} map[35] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets} map[36] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement} map[37] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype} map[38] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images} map[39] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms} map[40] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset} map[41] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets} map[42] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL} map[43] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState} map[44] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet} map[45] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet} map[46] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title} map[47] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie} map[48] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen} map[49] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body} map[50] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding} map[51] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone} map[52] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI} map[53] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset} map[54] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links} map[55] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling} map[56] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode} map[57] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild} map[58] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI} map[59] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild} map[60] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue} map[61] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent} map[62] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType} map[63] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName} map[64] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix} map[65] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes} map[66] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling} map[67] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes} map[68] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument} map[69] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI} map[70] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName} map[71] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement} map[72] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus} map[73] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents} map[74] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln} map[75] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close} map[76] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear} map[77] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents} map[78] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open} map[79] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write} map[80] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate} map[81] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange} map[82] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen} map[83] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent} map[84] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext} map[85] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode} map[86] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS} map[87] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement} map[88] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement,importNode} map[89] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement,importNode,createComment} map[90] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement,importNode,createComment,caretRangeFromPoint} map[91] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement,importNode,createComment,caretRangeFromPoint,createAttribute} map[92] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement,importNode,createComment,caretRangeFromPoint,createAttribute,queryCommandState} map[93] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement,importNode,createComment,caretRangeFromPoint,createAttribute,queryCommandState,getElementsByTagName} map[94] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement,importNode,createComment,caretRangeFromPoint,createAttribute,queryCommandState,getElementsByTagName,createNodeIterator} map[95] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement,importNode,createComment,caretRangeFromPoint,createAttribute,queryCommandState,getElementsByTagName,createNodeIterator,querySelector} map[96] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement,importNode,createComment,caretRangeFromPoint,createAttribute,queryCommandState,getElementsByTagName,createNodeIterator,querySelector,createEntityReference} map[97] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement,importNode,createComment,caretRangeFromPoint,createAttribute,queryCommandState,getElementsByTagName,createNodeIterator,querySelector,createEntityReference,getOverrideStyle} map[98] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement,importNode,createComment,caretRangeFromPoint,createAttribute,queryCommandState,getElementsByTagName,createNodeIterator,querySelector,createEntityReference,getOverrideStyle,createNSResolver} map[99] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement,importNode,createComment,caretRangeFromPoint,createAttribute,queryCommandState,getElementsByTagName,createNodeIterator,querySelector,createEntityReference,getOverrideStyle,createNSResolver,adoptNode} map[100] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement,importNode,createComment,caretRangeFromPoint,createAttribute,queryCommandState,getElementsByTagName,createNodeIterator,querySelector,createEntityReference,getOverrideStyle,createNSResolver,adoptNode,queryCommandEnabled} map[101] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement,importNode,createComment,caretRangeFromPoint,createAttribute,queryCommandState,getElementsByTagName,createNodeIterator,querySelector,createEntityReference,getOverrideStyle,createNSResolver,adoptNode,queryCommandEnabled,getElementsByTagNameNS} map[102] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement,importNode,createComment,caretRangeFromPoint,createAttribute,queryCommandState,getElementsByTagName,createNodeIterator,querySelector,createEntityReference,getOverrideStyle,createNSResolver,adoptNode,queryCommandEnabled,getElementsByTagNameNS,getElementsByClassName} map[103] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement,importNode,createComment,caretRangeFromPoint,createAttribute,queryCommandState,getElementsByTagName,createNodeIterator,querySelector,createEntityReference,getOverrideStyle,createNSResolver,adoptNode,queryCommandEnabled,getElementsByTagNameNS,getElementsByClassName,createExpression} map[104] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement,importNode,createComment,caretRangeFromPoint,createAttribute,queryCommandState,getElementsByTagName,createNodeIterator,querySelector,createEntityReference,getOverrideStyle,createNSResolver,adoptNode,queryCommandEnabled,getElementsByTagNameNS,getElementsByClassName,createExpression,createProcessingInstruction} map[105] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement,importNode,createComment,caretRangeFromPoint,createAttribute,queryCommandState,getElementsByTagName,createNodeIterator,querySelector,createEntityReference,getOverrideStyle,createNSResolver,adoptNode,queryCommandEnabled,getElementsByTagNameNS,getElementsByClassName,createExpression,createProcessingInstruction,createElementNS} map[106] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement,importNode,createComment,caretRangeFromPoint,createAttribute,queryCommandState,getElementsByTagName,createNodeIterator,querySelector,createEntityReference,getOverrideStyle,createNSResolver,adoptNode,queryCommandEnabled,getElementsByTagNameNS,getElementsByClassName,createExpression,createProcessingInstruction,createElementNS,createDocumentFragment} map[107] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement,importNode,createComment,caretRangeFromPoint,createAttribute,queryCommandState,getElementsByTagName,createNodeIterator,querySelector,createEntityReference,getOverrideStyle,createNSResolver,adoptNode,queryCommandEnabled,getElementsByTagNameNS,getElementsByClassName,createExpression,createProcessingInstruction,createElementNS,createDocumentFragment,createCDATASection} map[108] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement,importNode,createComment,caretRangeFromPoint,createAttribute,queryCommandState,getElementsByTagName,createNodeIterator,querySelector,createEntityReference,getOverrideStyle,createNSResolver,adoptNode,queryCommandEnabled,getElementsByTagNameNS,getElementsByClassName,createExpression,createProcessingInstruction,createElementNS,createDocumentFragment,createCDATASection,queryCommandIndeterm} map[109] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement,importNode,createComment,caretRangeFromPoint,createAttribute,queryCommandState,getElementsByTagName,createNodeIterator,querySelector,createEntityReference,getOverrideStyle,createNSResolver,adoptNode,queryCommandEnabled,getElementsByTagNameNS,getElementsByClassName,createExpression,createProcessingInstruction,createElementNS,createDocumentFragment,createCDATASection,queryCommandIndeterm,queryCommandValue} map[110] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement,importNode,createComment,caretRangeFromPoint,createAttribute,queryCommandState,getElementsByTagName,createNodeIterator,querySelector,createEntityReference,getOverrideStyle,createNSResolver,adoptNode,queryCommandEnabled,getElementsByTagNameNS,getElementsByClassName,createExpression,createProcessingInstruction,createElementNS,createDocumentFragment,createCDATASection,queryCommandIndeterm,queryCommandValue,getSelection} map[111] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement,importNode,createComment,caretRangeFromPoint,createAttribute,queryCommandState,getElementsByTagName,createNodeIterator,querySelector,createEntityReference,getOverrideStyle,createNSResolver,adoptNode,queryCommandEnabled,getElementsByTagNameNS,getElementsByClassName,createExpression,createProcessingInstruction,createElementNS,createDocumentFragment,createCDATASection,queryCommandIndeterm,queryCommandValue,getSelection,getElementById} map[112] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textCo ntent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement,importNode,createComment,caretRangeFromPoint,createAttribute,queryCommandState,getElementsByTagName,createNodeIterator,querySelector,createEntityReference,getOverrideStyle,createNSResolver,adoptNode,queryCommandEnabled,getElementsByTagNameNS,getElementsByClassName,createExpression,createProcessingInstruction,createElementNS,createDocumentFragment,createCDATASection,queryCommandIndeterm,queryCommandValue,getSelection,getElementById,createTreeWalker} map[113] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement,importNode,createComment,caretRangeFromPoint,createAttribute,queryCommandState,getElementsByTagName,createNodeIterator,querySelector,createEntityReference,getOverrideStyle,createNSResolver,adoptNode,queryCommandEnabled,getElementsByTagNameNS,getElementsByClassName,createExpression,createProcessingInstruction,createElementNS,createDocumentFragment,createCDATASection,queryCommandIndeterm,queryCommandValue,getSelection,getElementById,createTreeWalker,execCommand} map[114] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement,importNode,createComment,caretRangeFromPoint,createAttribute,queryCommandState,getElementsByTagName,createNodeIterator,querySelector,createEntityReference,getOverrideStyle,createNSResolver,adoptNode,queryCommandEnabled,getElementsByTagNameNS,getElementsByClassName,createExpression,createProcessingInstruction,createElementNS,createDocumentFragment,createCDATASection,queryCommandIndeterm,queryCommandValue,getSelection,getElementById,createTreeWalker,execCommand,queryCommandSupported} map[115] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement,importNode,createComment,caretRangeFromPoint,createAttribute,queryCommandState,getElementsByTagName,createNodeIterator,querySelector,createEntityReference,getOverrideStyle,createNSResolver,adoptNode,queryCommandEnabled,getElementsByTagNameNS,getElementsByClassName,createExpression,createProcessingInstruction,createElementNS,createDocumentFragment,createCDATASection,queryCommandIndeterm,queryCommandValue,getSelection,getElementById,createTreeWalker,execCommand,queryCommandSupported,getElementsByName} map[116] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement,importNode,createComment,caretRangeFromPoint,createAttribute,queryCommandState,getElementsByTagName,createNodeIterator,querySelector,createEntityReference,getOverrideStyle,createNSResolver,adoptNode,queryCommandEnabled,getElementsByTagNameNS,getElementsByClassName,createExpression,createProcessingInstruction,createElementNS,createDocumentFragment,createCDATASection,queryCommandIndeterm,queryCommandValue,getSelection,getElementById,createTreeWalker,execCommand,queryCommandSupported,getElementsByName,elementFromPoint} map[117] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement,importNode,createComment,caretRangeFromPoint,createAttribute,queryCommandState,getElementsByTagName,createNodeIterator,querySelector,createEntityReference,getOverrideStyle,createNSResolver,adoptNode,queryCommandEnabled,getElementsByTagNameNS,getElementsByClassName,createExpression,createProcessingInstruction,createElementNS,createDocumentFragment,createCDATASection,queryCommandIndeterm,queryCommandValue,getSelection,getElementById,createTreeWalker,execCommand,queryCommandSupported,getElementsByName,elementFromPoint,querySelectorAll} map[118] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement,importNode,createComment,caretRangeFromPoint,createAttribute,queryCommandState,getElementsByTagName,createNodeIterator,querySelector,createEntityReference,getOverrideStyle,createNSResolver,adoptNode,queryCommandEnabled,getElementsByTagNameNS,getElementsByClassName,createExpression,createProcessingInstruction,createElementNS,createDocumentFragment,createCDATASection,queryCommandIndeterm,queryCommandValue,getSelection,getElementById,createTreeWalker,execCommand,queryCommandSupported,getElementsByName,elementFromPoint,querySelectorAll,hasAttributes} map[119] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement,importNode,createComment,caretRangeFromPoint,createAttribute,queryCommandState,getElementsByTagName,createNodeIterator,querySelector,createEntityReference,getOverrideStyle,createNSResolver,adoptNode,queryCommandEnabled,getElementsByTagNameNS,getElementsByClassName,createExpression,createProcessingInstruction,createElementNS,createDocumentFragment,createCDATASection,queryCommandIndeterm,queryCommandValue,getSelection,getElementById,createTreeWalker,execCommand,queryCommandSupported,getElementsByName,elementFromPoint,querySelectorAll,hasAttributes,NOTATION_NODE} map[120] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement,importNode,createComment,caretRangeFromPoint,createAttribute,queryCommandState,getElementsByTagName,createNodeIterator,querySelector,createEntityReference,getOverrideStyle,createNSResolver,adoptNode,queryCommandEnabled,getElementsByTagNameNS,getElementsByClassName,createExpression,createProcessingInstruction,createElementNS,createDocumentFragment,createCDATASection,queryCommandIndeterm,queryCommandValue,getSelection,getElementById,createTreeWalker,execCommand,queryCommandSupported,getElementsByName,elementFromPoint,querySelectorAll,hasAttributes,NOTATION_NODE,CDATA_SECTION_NODE} map[121] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement,importNode,createComment,caretRangeFromPoint,createAttribute,queryCommandState,getElementsByTagName,createNodeIterator,querySelector,createEntityReference,getOverrideStyle,createNSResolver,adoptNode,queryCommandEnabled,getElementsByTagNameNS,getElementsByClassName,createExpression,createProcessingInstruction,createElementNS,createDocumentFragment,createCDATASection,queryCommandIndeterm,queryCommandValue,getSelection,getElementById,createTreeWalker,execCommand,queryCommandSupported,getElementsByName,elementFromPoint,querySelectorAll,hasAttributes,NOTATION_NODE,CDATA_SECTION_NODE,isSupported} map[122] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement,importNode,createComment,caretRangeFromPoint,createAttribute,queryCommandState,getElementsByTagName,createNodeIterator,querySelector,createEntityReference,getOverrideStyle,createNSResolver,adoptNode,queryCommandEnabled,getElementsByTagNameNS,getElementsByClassName,createExpression,createProcessingInstruction,createElementNS,createDocumentFragment,createCDATASection,queryCommandIndeterm,queryCommandValue,getSelection,getElementById,createTreeWalker,execCommand,queryCommandSupported,getElementsByName,elementFromPoint,querySelectorAll,hasAttributes,NOTATION_NODE,CDATA_SECTION_NODE,isSupported,ELEMENT_NODE} map[123] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement,importNode,createComment,caretRangeFromPoint,createAttribute,queryCommandState,getElementsByTagName,createNodeIterator,querySelector,createEntityReference,getOverrideStyle,createNSResolver,adoptNode,queryCommandEnabled,getElementsByTagNameNS,getElementsByClassName,createExpression,createProcessingInstruction,createElementNS,createDocumentFragment,createCDATASection,queryCommandIndeterm,queryCommandValue,getSelection,getElementById,createTreeWalker,execCommand,queryCommandSupported,getElementsByName,elementFromPoint,querySelectorAll,hasAttributes,NOTATION_NODE,CDATA_SECTION_NODE,isSupported,ELEMENT_NODE,DOCUMENT_POSITION_DISCONNECTED} map[124] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement,importNode,createComment,caretRangeFromPoint,createAttribute,queryCommandState,getElementsByTagName,createNodeIterator,querySelector,createEntityReference,getOverrideStyle,createNSResolver,adoptNode,queryCommandEnabled,getElementsByTagNameNS,getElementsByClassName,createExpression,createProcessingInstruction,createElementNS,createDocumentFragment,createCDATASection,queryCommandIndeterm,queryCommandValue,getSelection,getElementById,createTreeWalker,execCommand,queryCommandSupported,getElementsByName,elementFromPoint,querySelectorAll,hasAttributes,NOTATION_NODE,CDATA_SECTION_NODE,isSupported,ELEMENT_NODE,DOCUMENT_POSITION_DISCONNECTED,isEqualNode} map[125] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement,importNode,createComment,caretRangeFromPoint,createAttribute,queryCommandState,getElementsByTagName,createNodeIterator,querySelector,createEntityReference,getOverrideStyle,createNSResolver,adoptNode,queryCommandEnabled,getElementsByTagNameNS,getElementsByClassName,createExpression,createProcessingInstruction,createElementNS,createDocumentFragment,createCDATASection,queryCommandIndeterm,queryCommandValue,getSelection,getElementById,createTreeWalker,execCommand,queryCommandSupported,getElementsByName,elementFromPoint,querySelectorAll,hasAttributes,NOTATION_NODE,CDATA_SECTION_NODE,isSupported,ELEMENT_NODE,DOCUMENT_POSITION_DISCONNECTED,isEqualNode,ENTITY_NODE} map[126] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement,importNode,createComment,caretRangeFromPoint,createAttribute,queryCommandState,getElementsByTagName,createNodeIterator,querySelector,createEntityReference,getOverrideStyle,createNSResolver,adoptNode,queryCommandEnabled,getElementsByTagNameNS,getElementsByClassName,createExpression,createProcessingInstruction,createElementNS,createDocumentFragment,createCDATASection,queryCommandIndeterm,queryCommandValue,getSelection,getElementById,createTreeWalker,execCommand,queryCommandSupported,getElementsByName,elementFromPoint,querySelectorAll,hasAttributes,NOTATION_NODE,CDATA_SECTION_NODE,isSupported,ELEMENT_NODE,DOCUMENT_POSITION_DISCONNECTED,isEqualNode,ENTITY_NODE,TEXT_NODE} map[127] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement,importNode,createComment,caretRangeFromPoint,createAttribute,queryCommandState,getElementsByTagName,createNodeIterator,querySelector,createEntityReference,getOverrideStyle,createNSResolver,adoptNode,queryCommandEnabled,getElementsByTagNameNS,getElementsByClassName,createExpression,createProcessingInstruction,createElementNS,createDocumentFragment,createCDATASection,queryCommandIndeterm,queryCommandValue,getSelection,getElementById,createTreeWalker,execCommand,queryCommandSupported,getElementsByName,elementFromPoint,querySelectorAll,hasAttributes,NOTATION_NODE,CDATA_SECTION_NODE,isSupported,ELEMENT_NODE,DOCUMENT_POSITION_DISCONNECTED,isEqualNode,ENTITY_NODE,TEXT_NODE,ENTITY_REFERENCE_NODE} map[128] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement,importNode,createComment,caretRangeFromPoint,createAttribute,queryCommandState,getElementsByTagName,createNodeIterator,querySelector,createEntityReference,getOverrideStyle,createNSResolver,adoptNode,queryCommandEnabled,getElementsByTagNameNS,getElementsByClassName,createExpression,createProcessingInstruction,createElementNS,createDocumentFragment,createCDATASection,queryCommandIndeterm,queryCommandValue,getSelection,getElementById,createTreeWalker,execCommand,queryCommandSupported,getElementsByName,elementFromPoint,querySelectorAll,hasAttributes,NOTATION_NODE,CDATA_SECTION_NODE,isSupported,ELEMENT_NODE,DOCUMENT_POSITION_DISCONNECTED,isEqualNode,ENTITY_NODE,TEXT_NODE,ENTITY_REFERENCE_NODE,DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC} map[129] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement,importNode,createComment,caretRangeFromPoint,createAttribute,queryCommandState,getElementsByTagName,createNodeIterator,querySelector,createEntityReference,getOverrideStyle,createNSResolver,adoptNode,queryCommandEnabled,getElementsByTagNameNS,getElementsByClassName,createExpression,createProcessingInstruction,createElementNS,createDocumentFragment,createCDATASection,queryCommandIndeterm,queryCommandValue,getSelection,getElementById,createTreeWalker,execCommand,queryCommandSupported,getElementsByName,elementFromPoint,querySelectorAll,hasAttributes,NOTATION_NODE,CDATA_SECTION_NODE,isSupported,ELEMENT_NODE,DOCUMENT_POSITION_DISCONNECTED,isEqualNode,ENTITY_NODE,TEXT_NODE,ENTITY_REFERENCE_NODE,DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC,DOCUMENT_FRAGMENT_NODE} map[130] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement,importNode,createComment,caretRangeFromPoint,createAttribute,queryCommandState,getElementsByTagName,createNodeIterator,querySelector,createEntityReference,getOverrideStyle,createNSResolver,adoptNode,queryCommandEnabled,getElementsByTagNameNS,getElementsByClassName,createExpression,createProcessingInstruction,createElementNS,createDocumentFragment,createCDATASection,queryCommandIndeterm,queryCommandValue,getSelection,getElementById,createTreeWalker,execCommand,queryCommandSupported,getElementsByName,elementFromPoint,querySelectorAll,hasAttributes,NOTATION_NODE,CDATA_SECTION_NODE,isSupported,ELEMENT_NODE,DOCUMENT_POSITION_DISCONNECTED,isEqualNode,ENTITY_NODE,TEXT_NODE,ENTITY_REFERENCE_NODE,DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC,DOCUMENT_FRAGMENT_NODE,cloneNode} map[131] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement,importNode,createComment,caretRangeFromPoint,createAttribute,queryCommandState,getElementsByTagName,createNodeIterator,querySelector,createEntityReference,getOverrideStyle,createNSResolver,adoptNode,queryCommandEnabled,getElementsByTagNameNS,getElementsByClassName,createExpression,createProcessingInstruction,createElementNS,createDocumentFragment,createCDATASection,queryCommandIndeterm,queryCommandValue,getSelection,getElementById,createTreeWalker,execCommand,queryCommandSupported,getElementsByName,elementFromPoint,querySelectorAll,hasAttributes,NOTATION_NODE,CDATA_SECTION_NODE,isSupported,ELEMENT_NODE,DOCUMENT_POSITION_DISCONNECTED,isEqualNode,ENTITY_NODE,TEXT_NODE,ENTITY_REFERENCE_NODE,DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC,DOCUMENT_FRAGMENT_NODE,cloneNode,dispatchEvent} map[132] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement,importNode,createComment,caretRangeFromPoint,createAttribute,queryCommandState,getElementsByTagName,createNodeIterator,querySelector,createEntityReference,getOverrideStyle,createNSResolver,adoptNode,queryCommandEnabled,getElementsByTagNameNS,getElementsByClassName,createExpression,createProcessingInstruction,createElementNS,createDocumentFragment,createCDATASection,queryCommandIndeterm,queryCommandValue,getSelection,getElementById,createTreeWalker,execCommand,queryCommandSupported,getElementsByName,elementFromPoint,querySelectorAll,hasAttributes,NOTATION_NODE,CDATA_SECTION_NODE,isSupported,ELEMENT_NODE,DOCUMENT_POSITION_DISCONNECTED,isEqualNode,ENTITY_NODE,TEXT_NODE,ENTITY_REFERENCE_NODE,DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC,DOCUMENT_FRAGMENT_NODE,cloneNode,dispatchEvent,PROCESSING_INSTRUCTION_NODE} map[133] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement,importNode,createComment,caretRangeFromPoint,createAttribute,queryCommandState,getElementsByTagName,createNodeIterator,querySelector,createEntityReference,getOverrideStyle,createNSResolver,adoptNode,queryCommandEnabled,getElementsByTagNameNS,getElementsByClassName,createExpression,createProcessingInstruction,createElementNS,createDocumentFragment,createCDATASection,queryCommandIndeterm,queryCommandValue,getSelection,getElementById,createTreeWalker,execCommand,queryCommandSupported,getElementsByName,elementFromPoint,querySelectorAll,hasAttributes,NOTATION_NODE,CDATA_SECTION_NODE,isSupported,ELEMENT_NODE,DOCUMENT_POSITION_DISCONNECTED,isEqualNode,ENTITY_NODE,TEXT_NODE,ENTITY_REFERENCE_NODE,DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC,DOCUMENT_FRAGMENT_NODE,cloneNode,dispatchEvent,PROCESSING_INSTRUCTION_NODE,isDefaultNamespace} map[134] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement,importNode,createComment,caretRangeFromPoint,createAttribute,queryCommandState,getElementsByTagName,createNodeIterator,querySelector,createEntityReference,getOverrideStyle,createNSResolver,adoptNode,queryCommandEnabled,getElementsByTagNameNS,getElementsByClassName,createExpression,createProcessingInstruction,createElementNS,createDocumentFragment,createCDATASection,queryCommandIndeterm,queryCommandValue,getSelection,getElementById,createTreeWalker,execCommand,queryCommandSupported,getElementsByName,elementFromPoint,querySelectorAll,hasAttributes,NOTATION_NODE,CDATA_SECTION_NODE,isSupported,ELEMENT_NODE,DOCUMENT_POSITION_DISCONNECTED,isEqualNode,ENTITY_NODE,TEXT_NODE,ENTITY_REFERENCE_NODE,DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC,DOCUMENT_FRAGMENT_NODE,cloneNode,dispatchEvent,PROCESSING_INSTRUCTION_NODE,isDefaultNamespace,insertBefore} map[135] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement,importNode,createComment,caretRangeFromPoint,createAttribute,queryCommandState,getElementsByTagName,createNodeIterator,querySelector,createEntityReference,getOverrideStyle,createNSResolver,adoptNode,queryCommandEnabled,getElementsByTagNameNS,getElementsByClassName,createExpression,createProcessingInstruction,createElementNS,createDocumentFragment,createCDATASection,queryCommandIndeterm,queryCommandValue,getSelection,getElementById,createTreeWalker,execCommand,queryCommandSupported,getElementsByName,elementFromPoint,querySelectorAll,hasAttributes,NOTATION_NODE,CDATA_SECTION_NODE,isSupported,ELEMENT_NODE,DOCUMENT_POSITION_DISCONNECTED,isEqualNode,ENTITY_NODE,TEXT_NODE,ENTITY_REFERENCE_NODE,DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC,DOCUMENT_FRAGMENT_NODE,cloneNode,dispatchEvent,PROCESSING_INSTRUCTION_NODE,isDefaultNamespace,insertBefore,removeChild} map[136] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement,importNode,createComment,caretRangeFromPoint,createAttribute,queryCommandState,getElementsByTagName,createNodeIterator,querySelector,createEntityReference,getOverrideStyle,createNSResolver,adoptNode,queryCommandEnabled,getElementsByTagNameNS,getElementsByClassName,createExpression,createProcessingInstruction,createElementNS,createDocumentFragment,createCDATASection,queryCommandIndeterm,queryCommandValue,getSelection,getElementById,createTreeWalker,execCommand,queryCommandSupported,getElementsByName,elementFromPoint,querySelectorAll,hasAttributes,NOTATION_NODE,CDATA_SECTION_NODE,isSupported,ELEMENT_NODE,DOCUMENT_POSITION_DISCONNECTED,isEqualNode,ENTITY_NODE,TEXT_NODE,ENTITY_REFERENCE_NODE,DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC,DOCUMENT_FRAGMENT_NODE,cloneNode,dispatchEvent,PROCESSING_INSTRUCTION_NODE,isDefaultNamespace,insertBefore,removeChild,hasChildNodes} map[137] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement,importNode,createComment,caretRangeFromPoint,createAttribute,queryCommandState,getElementsByTagName,createNodeIterator,querySelector,createEntityReference,getOverrideStyle,createNSResolver,adoptNode,queryCommandEnabled,getElementsByTagNameNS,getElementsByClassName,createExpression,createProcessingInstruction,createElementNS,createDocumentFragment,createCDATASection,queryCommandIndeterm,queryCommandValue,getSelection,getElementById,createTreeWalker,execCommand,queryCommandSupported,getElementsByName,elementFromPoint,querySelectorAll,hasAttributes,NOTATION_NODE,CDATA_SECTION_NODE,isSupported,ELEMENT_NODE,DOCUMENT_POSITION_DISCONNECTED,isEqualNode,ENTITY_NODE,TEXT_NODE,ENTITY_REFERENCE_NODE,DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC,DOCUMENT_FRAGMENT_NODE,cloneNode,dispatchEvent,PROCESSING_INSTRUCTION_NODE,isDefaultNamespace,insertBefore,removeChild,hasChildNodes,addEventListener} map[138] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement,importNode,createComment,caretRangeFromPoint,createAttribute,queryCommandState,getElementsByTagName,createNodeIterator,querySelector,createEntityReference,getOverrideStyle,createNSResolver,adoptNode,queryCommandEnabled,getElementsByTagNameNS,getElementsByClassName,createExpression,createProcessingInstruction,createElementNS,createDocumentFragment,createCDATASection,queryCommandIndeterm,queryCommandValue,getSelection,getElementById,createTreeWalker,execCommand,queryCommandSupported,getElementsByName,elementFromPoint,querySelectorAll,hasAttributes,NOTATION_NODE,CDATA_SECTION_NODE,isSupported,ELEMENT_NODE,DOCUMENT_POSITION_DISCONNECTED,isEqualNode,ENTITY_NODE,TEXT_NODE,ENTITY_REFERENCE_NODE,DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC,DOCUMENT_FRAGMENT_NODE,cloneNode,dispatchEvent,PROCESSING_INSTRUCTION_NODE,isDefaultNamespace,insertBefore,removeChild,hasChildNodes,addEventListener,DOCUMENT_POSITION_PRECEDING} map[139] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement,importNode,createComment,caretRangeFromPoint,createAttribute,queryCommandState,getElementsByTagName,createNodeIterator,querySelector,createEntityReference,getOverrideStyle,createNSResolver,adoptNode,queryCommandEnabled,getElementsByTagNameNS,getElementsByClassName,createExpression,createProcessingInstruction,createElementNS,createDocumentFragment,createCDATASection,queryCommandIndeterm,queryCommandValue,getSelection,getElementById,createTreeWalker,execCommand,queryCommandSupported,getElementsByName,elementFromPoint,querySelectorAll,hasAttributes,NOTATION_NODE,CDATA_SECTION_NODE,isSupported,ELEMENT_NODE,DOCUMENT_POSITION_DISCONNECTED,isEqualNode,ENTITY_NODE,TEXT_NODE,ENTITY_REFERENCE_NODE,DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC,DOCUMENT_FRAGMENT_NODE,cloneNode,dispatchEvent,PROCESSING_INSTRUCTION_NODE,isDefaultNamespace,insertBefore,removeChild,hasChildNodes,addEventListener,DOCUMENT_POSITION_PRECEDING,normalize} map[140] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement,importNode,createComment,caretRangeFromPoint,createAttribute,queryCommandState,getElementsByTagName,createNodeIterator,querySelector,createEntityReference,getOverrideStyle,createNSResolver,adoptNode,queryCommandEnabled,getElementsByTagNameNS,getElementsByClassName,createExpression,createProcessingInstruction,createElementNS,createDocumentFragment,createCDATASection,queryCommandIndeterm,queryCommandValue,getSelection,getElementById,createTreeWalker,execCommand,queryCommandSupported,getElementsByName,elementFromPoint,querySelectorAll,hasAttributes,NOTATION_NODE,CDATA_SECTION_NODE,isSupported,ELEMENT_NODE,DOCUMENT_POSITION_DISCONNECTED,isEqualNode,ENTITY_NODE,TEXT_NODE,ENTITY_REFERENCE_NODE,DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC,DOCUMENT_FRAGMENT_NODE,cloneNode,dispatchEvent,PROCESSING_INSTRUCTION_NODE,isDefaultNamespace,insertBefore,removeChild,hasChildNodes,addEventListener,DOCUMENT_POSITION_PRECEDING,normalize,compareDocumentPosition} map[141] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement,importNode,createComment,caretRangeFromPoint,createAttribute,queryCommandState,getElementsByTagName,createNodeIterator,querySelector,createEntityReference,getOverrideStyle,createNSResolver,adoptNode,queryCommandEnabled,getElementsByTagNameNS,getElementsByClassName,createExpression,createProcessingInstruction,createElementNS,createDocumentFragment,createCDATASection,queryCommandIndeterm,queryCommandValue,getSelection,getElementById,createTreeWalker,execCommand,queryCommandSupported,getElementsByName,elementFromPoint,querySelectorAll,hasAttributes,NOTATION_NODE,CDATA_SECTION_NODE,isSupported,ELEMENT_NODE,DOCUMENT_POSITION_DISCONNECTED,isEqualNode,ENTITY_NODE,TEXT_NODE,ENTITY_REFERENCE_NODE,DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC,DOCUMENT_FRAGMENT_NODE,cloneNode,dispatchEvent,PROCESSING_INSTRUCTION_NODE,isDefaultNamespace,insertBefore,removeChild,hasChildNodes,addEventListener,DOCUMENT_POSITION_PRECEDING,normalize,compareDocumentPosition,DOCUMENT_TYPE_NODE} map[142] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement,importNode,createComment,caretRangeFromPoint,createAttribute,queryCommandState,getElementsByTagName,createNodeIterator,querySelector,createEntityReference,getOverrideStyle,createNSResolver,adoptNode,queryCommandEnabled,getElementsByTagNameNS,getElementsByClassName,createExpression,createProcessingInstruction,createElementNS,createDocumentFragment,createCDATASection,queryCommandIndeterm,queryCommandValue,getSelection,getElementById,createTreeWalker,execCommand,queryCommandSupported,getElementsByName,elementFromPoint,querySelectorAll,hasAttributes,NOTATION_NODE,CDATA_SECTION_NODE,isSupported,ELEMENT_NODE,DOCUMENT_POSITION_DISCONNECTED,isEqualNode,ENTITY_NODE,TEXT_NODE,ENTITY_REFERENCE_NODE,DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC,DOCUMENT_FRAGMENT_NODE,cloneNode,dispatchEvent,PROCESSING_INSTRUCTION_NODE,isDefaultNamespace,insertBefore,removeChild,hasChildNodes,addEventListener,DOCUMENT_POSITION_PRECEDING,normalize,compareDocumentPosition,DOCUMENT_TYPE_NODE,COMMENT_NODE} map[143] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement,importNode,createComment,caretRangeFromPoint,createAttribute,queryCommandState,getElementsByTagName,createNodeIterator,querySelector,createEntityReference,getOverrideStyle,createNSResolver,adoptNode,queryCommandEnabled,getElementsByTagNameNS,getElementsByClassName,createExpression,createProcessingInstruction,createElementNS,createDocumentFragment,createCDATASection,queryCommandIndeterm,queryCommandValue,getSelection,getElementById,createTreeWalker,execCommand,queryCommandSupported,getElementsByName,elementFromPoint,querySelectorAll,hasAttributes,NOTATION_NODE,CDATA_SECTION_NODE,isSupported,ELEMENT_NODE,DOCUMENT_POSITION_DISCONNECTED,isEqualNode,ENTITY_NODE,TEXT_NODE,ENTITY_REFERENCE_NODE,DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC,DOCUMENT_FRAGMENT_NODE,cloneNode,dispatchEvent,PROCESSING_INSTRUCTION_NODE,isDefaultNamespace,insertBefore,removeChild,hasChildNodes,addEventListener,DOCUMENT_POSITION_PRECEDING,normalize,compareDocumentPosition,DOCUMENT_TYPE_NODE,COMMENT_NODE,replaceChild} map[144] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement,importNode,createComment,caretRangeFromPoint,createAttribute,queryCommandState,getElementsByTagName,createNodeIterator,querySelector,createEntityReference,getOverrideStyle,createNSResolver,adoptNode,queryCommandEnabled,getElementsByTagNameNS,getElementsByClassName,createExpression,createProcessingInstruction,createElementNS,createDocumentFragment,createCDATASection,queryCommandIndeterm,queryCommandValue,getSelection,getElementById,createTreeWalker,execCommand,queryCommandSupported,getElementsByName,elementFromPoint,querySelectorAll,hasAttributes,NOTATION_NODE,CDATA_SECTION_NODE,isSupported,ELEMENT_NODE,DOCUMENT_POSITION_DISCONNECTED,isEqualNode,ENTITY_NODE,TEXT_NODE,ENTITY_REFERENCE_NODE,DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC,DOCUMENT_FRAGMENT_NODE,cloneNode,dispatchEvent,PROCESSING_INSTRUCTION_NODE,isDefaultNamespace,insertBefore,removeChild,hasChildNodes,addEventListener,DOCUMENT_POSITION_PRECEDING,normalize,compareDocumentPosition,DOCUMENT_TYPE_NODE,COMMENT_NODE,replaceChild,DOCUMENT_POSITION_FOLLOWING} map[145] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement,importNode,createComment,caretRangeFromPoint,createAttribute,queryCommandState,getElementsByTagName,createNodeIterator,querySelector,createEntityReference,getOverrideStyle,createNSResolver,adoptNode,queryCommandEnabled,getElementsByTagNameNS,getElementsByClassName,createExpression,createProcessingInstruction,createElementNS,createDocumentFragment,createCDATASection,queryCommandIndeterm,queryCommandValue,getSelection,getElementById,createTreeWalker,execCommand,queryCommandSupported,getElementsByName,elementFromPoint,querySelectorAll,hasAttributes,NOTATION_NODE,CDATA_SECTION_NODE,isSupported,ELEMENT_NODE,DOCUMENT_POSITION_DISCONNECTED,isEqualNode,ENTITY_NODE,TEXT_NODE,ENTITY_REFERENCE_NODE,DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC,DOCUMENT_FRAGMENT_NODE,cloneNode,dispatchEvent,PROCESSING_INSTRUCTION_NODE,isDefaultNamespace,insertBefore,removeChild,hasChildNodes,addEventListener,DOCUMENT_POSITION_PRECEDING,normalize,compareDocumentPosition,DOCUMENT_TYPE_NODE,COMMENT_NODE,replaceChild,DOCUMENT_POSITION_FOLLOWING,removeEventListener} map[146] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement,importNode,createComment,caretRangeFromPoint,createAttribute,queryCommandState,getElementsByTagName,createNodeIterator,querySelector,createEntityReference,getOverrideStyle,createNSResolver,adoptNode,queryCommandEnabled,getElementsByTagNameNS,getElementsByClassName,createExpression,createProcessingInstruction,createElementNS,createDocumentFragment,createCDATASection,queryCommandIndeterm,queryCommandValue,getSelection,getElementById,createTreeWalker,execCommand,queryCommandSupported,getElementsByName,elementFromPoint,querySelectorAll,hasAttributes,NOTATION_NODE,CDATA_SECTION_NODE,isSupported,ELEMENT_NODE,DOCUMENT_POSITION_DISCONNECTED,isEqualNode,ENTITY_NODE,TEXT_NODE,ENTITY_REFERENCE_NODE,DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC,DOCUMENT_FRAGMENT_NODE,cloneNode,dispatchEvent,PROCESSING_INSTRUCTION_NODE,isDefaultNamespace,insertBefore,removeChild,hasChildNodes,addEventListener,DOCUMENT_POSITION_PRECEDING,normalize,compareDocumentPosition,DOCUMENT_TYPE_NODE,COMMENT_NODE,replaceChild,DOCUMENT_POSITION_FOLLOWING,removeEventListener,ATTRIBUTE_NODE} map[147] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement,importNode,createComment,caretRangeFromPoint,createAttribute,queryCommandState,getElementsByTagName,createNodeIterator,querySelector,createEntityReference,getOverrideStyle,createNSResolver,adoptNode,queryCommandEnabled,getElementsByTagNameNS,getElementsByClassName,createExpression,createProcessingInstruction,createElementNS,createDocumentFragment,createCDATASection,queryCommandIndeterm,queryCommandValue,getSelection,getElementById,createTreeWalker,execCommand,queryCommandSupported,getElementsByName,elementFromPoint,querySelectorAll,hasAttributes,NOTATION_NODE,CDATA_SECTION_NODE,isSupported,ELEMENT_NODE,DOCUMENT_POSITION_DISCONNECTED,isEqualNode,ENTITY_NODE,TEXT_NODE,ENTITY_REFERENCE_NODE,DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC,DOCUMENT_FRAGMENT_NODE,cloneNode,dispatchEvent,PROCESSING_INSTRUCTION_NODE,isDefaultNamespace,insertBefore,removeChild,hasChildNodes,addEventListener,DOCUMENT_POSITION_PRECEDING,normalize,compareDocumentPosition,DOCUMENT_TYPE_NODE,COMMENT_NODE,replaceChild,DOCUMENT_POSITION_FOLLOWING,removeEventListener,ATTRIBUTE_NODE,DOCUMENT_POSITION_CONTAINED_BY} map[148] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement,importNode,createComment,caretRangeFromPoint,createAttribute,queryCommandState,getElementsByTagName,createNodeIterator,querySelector,createEntityReference,getOverrideStyle,createNSResolver,adoptNode,queryCommandEnabled,getElementsByTagNameNS,getElementsByClassName,createExpression,createProcessingInstruction,createElementNS,createDocumentFragment,createCDATASection,queryCommandIndeterm,queryCommandValue,getSelection,getElementById,createTreeWalker,execCommand,queryCommandSupported,getElementsByName,elementFromPoint,querySelectorAll,hasAttributes,NOTATION_NODE,CDATA_SECTION_NODE,isSupported,ELEMENT_NODE,DOCUMENT_POSITION_DISCONNECTED,isEqualNode,ENTITY_NODE,TEXT_NODE,ENTITY_REFERENCE_NODE,DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC,DOCUMENT_FRAGMENT_NODE,cloneNode,dispatchEvent,PROCESSING_INSTRUCTION_NODE,isDefaultNamespace,insertBefore,removeChild,hasChildNodes,addEventListener,DOCUMENT_POSITION_PRECEDING,normalize,compareDocumentPosition,DOCUMENT_TYPE_NODE,COMMENT_NODE,replaceChild,DOCUMENT_POSITION_FOLLOWING,removeEventListener,ATTRIBUTE_NODE,DOCUMENT_POSITION_CONTAINED_BY,DOCUMENT_NODE} map[149] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement,importNode,createComment,caretRangeFromPoint,createAttribute,queryCommandState,getElementsByTagName,createNodeIterator,querySelector,createEntityReference,getOverrideStyle,createNSResolver,adoptNode,queryCommandEnabled,getElementsByTagNameNS,getElementsByClassName,createExpression,createProcessingInstruction,createElementNS,createDocumentFragment,createCDATASection,queryCommandIndeterm,queryCommandValue,getSelection,getElementById,createTreeWalker,execCommand,queryCommandSupported,getElementsByName,elementFromPoint,querySelectorAll,hasAttributes,NOTATION_NODE,CDATA_SECTION_NODE,isSupported,ELEMENT_NODE,DOCUMENT_POSITION_DISCONNECTED,isEqualNode,ENTITY_NODE,TEXT_NODE,ENTITY_REFERENCE_NODE,DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC,DOCUMENT_FRAGMENT_NODE,cloneNode,dispatchEvent,PROCESSING_INSTRUCTION_NODE,isDefaultNamespace,insertBefore,removeChild,hasChildNodes,addEventListener,DOCUMENT_POSITION_PRECEDING,normalize,compareDocumentPosition,DOCUMENT_TYPE_NODE,COMMENT_NODE,replaceChild,DOCUMENT_POSITION_FOLLOWING,removeEventListener,ATTRIBUTE_NODE,DOCUMENT_POSITION_CONTAINED_BY,DOCUMENT_NODE,DOCUMENT_POSITION_CONTAINS} map[150] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement,importNode,createComment,caretRangeFromPoint,createAttribute,queryCommandState,getElementsByTagName,createNodeIterator,querySelector,createEntityReference,getOverrideStyle,createNSResolver,adoptNode,queryCommandEnabled,getElementsByTagNameNS,getElementsByClassName,createExpression,createProcessingInstruction,createElementNS,createDocumentFragment,createCDATASection,queryCommandIndeterm,queryCommandValue,getSelection,getElementById,createTreeWalker,execCommand,queryCommandSupported,getElementsByName,el ementFromPoint,querySelectorAll,hasAttributes,NOTATION_NODE,CDATA_SECTION_NODE,isSupported,ELEMENT_NODE,DOCUMENT_POSITION_DISCONNECTED,isEqualNode,ENTITY_NODE,TEXT_NODE,ENTITY_REFERENCE_NODE,DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC,DOCUMENT_FRAGMENT_NODE,cloneNode,dispatchEvent,PROCESSING_INSTRUCTION_NODE,isDefaultNamespace,insertBefore,removeChild,hasChildNodes,addEventListener,DOCUMENT_POSITION_PRECEDING,normalize,compareDocumentPosition,DOCUMENT_TYPE_NODE,COMMENT_NODE,replaceChild,DOCUMENT_POSITION_FOLLOWING,removeEventListener,ATTRIBUTE_NODE,DOCUMENT_POSITION_CONTAINED_BY,DOCUMENT_NODE,DOCUMENT_POSITION_CONTAINS,appendChild} map[151] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement,importNode,createComment,caretRangeFromPoint,createAttribute,queryCommandState,getElementsByTagName,createNodeIterator,querySelector,createEntityReference,getOverrideStyle,createNSResolver,adoptNode,queryCommandEnabled,getElementsByTagNameNS,getElementsByClassName,createExpression,createProcessingInstruction,createElementNS,createDocumentFragment,createCDATASection,queryCommandIndeterm,queryCommandValue,getSelection,getElementById,createTreeWalker,execCommand,queryCommandSupported,getElementsByName,elementFromPoint,querySelectorAll,hasAttributes,NOTATION_NODE,CDATA_SECTION_NODE,isSupported,ELEMENT_NODE,DOCUMENT_POSITION_DISCONNECTED,isEqualNode,ENTITY_NODE,TEXT_NODE,ENTITY_REFERENCE_NODE,DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC,DOCUMENT_FRAGMENT_NODE,cloneNode,dispatchEvent,PROCESSING_INSTRUCTION_NODE,isDefaultNamespace,insertBefore,removeChild,hasChildNodes,addEventListener,DOCUMENT_POSITION_PRECEDING,normalize,compareDocumentPosition,DOCUMENT_TYPE_NODE,COMMENT_NODE,replaceChild,DOCUMENT_POSITION_FOLLOWING,removeEventListener,ATTRIBUTE_NODE,DOCUMENT_POSITION_CONTAINED_BY,DOCUMENT_NODE,DOCUMENT_POSITION_CONTAINS,appendChild,isSameNode} map[152] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement,importNode,createComment,caretRangeFromPoint,createAttribute,queryCommandState,getElementsByTagName,createNodeIterator,querySelector,createEntityReference,getOverrideStyle,createNSResolver,adoptNode,queryCommandEnabled,getElementsByTagNameNS,getElementsByClassName,createExpression,createProcessingInstruction,createElementNS,createDocumentFragment,createCDATASection,queryCommandIndeterm,queryCommandValue,getSelection,getElementById,createTreeWalker,execCommand,queryCommandSupported,getElementsByName,elementFromPoint,querySelectorAll,hasAttributes,NOTATION_NODE,CDATA_SECTION_NODE,isSupported,ELEMENT_NODE,DOCUMENT_POSITION_DISCONNECTED,isEqualNode,ENTITY_NODE,TEXT_NODE,ENTITY_REFERENCE_NODE,DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC,DOCUMENT_FRAGMENT_NODE,cloneNode,dispatchEvent,PROCESSING_INSTRUCTION_NODE,isDefaultNamespace,insertBefore,removeChild,hasChildNodes,addEventListener,DOCUMENT_POSITION_PRECEDING,normalize,compareDocumentPosition,DOCUMENT_TYPE_NODE,COMMENT_NODE,replaceChild,DOCUMENT_POSITION_FOLLOWING,removeEventListener,ATTRIBUTE_NODE,DOCUMENT_POSITION_CONTAINED_BY,DOCUMENT_NODE,DOCUMENT_POSITION_CONTAINS,appendChild,isSameNode,lookupPrefix} map[153] = {bgColor,alinkColor,width,plugins,height,fgColor,vlinkColor,all,embeds,scripts,compatMode,activeElement,dir,designMode,linkColor,documentElement,preferredStylesheetSet,xmlVersion,location,xmlEncoding,implementation,referrer,webkitFullScreenKeyboardInputAllowed,head,defaultView,domain,lastModified,anchors,applets,webkitCurrentFullScreenElement,doctype,images,forms,charset,styleSheets,URL,readyState,selectedStylesheetSet,characterSet,title,cookie,webkitIsFullScreen,body,inputEncoding,xmlStandalone,documentURI,defaultCharset,links,previousSibling,parentNode,lastChild,baseURI,firstChild,nodeValue,textContent,nodeType,nodeName,prefix,childNodes,nextSibling,attributes,ownerDocument,namespaceURI,localName,parentElement,hasFocus,captureEvents,writeln,close,clear,releaseEvents,open,write,evaluate,createRange,webkitCancelFullScreen,createEvent,getCSSCanvasContext,createTextNode,createAttributeNS,createElement,importNode,createComment,caretRangeFromPoint,createAttribute,queryCommandState,getElementsByTagName,createNodeIterator,querySelector,createEntityReference,getOverrideStyle,createNSResolver,adoptNode,queryCommandEnabled,getElementsByTagNameNS,getElementsByClassName,createExpression,createProcessingInstruction,createElementNS,createDocumentFragment,createCDATASection,queryCommandIndeterm,queryCommandValue,getSelection,getElementById,createTreeWalker,execCommand,queryCommandSupported,getElementsByName,elementFromPoint,querySelectorAll,hasAttributes,NOTATION_NODE,CDATA_SECTION_NODE,isSupported,ELEMENT_NODE,DOCUMENT_POSITION_DISCONNECTED,isEqualNode,ENTITY_NODE,TEXT_NODE,ENTITY_REFERENCE_NODE,DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC,DOCUMENT_FRAGMENT_NODE,cloneNode,dispatchEvent,PROCESSING_INSTRUCTION_NODE,isDefaultNamespace,insertBefore,removeChild,hasChildNodes,addEventListener,DOCUMENT_POSITION_PRECEDING,normalize,compareDocumentPosition,DOCUMENT_TYPE_NODE,COMMENT_NODE,replaceChild,DOCUMENT_POSITION_FOLLOWING,removeEventListener,ATTRIBUTE_NODE,DOCUMENT_POSITION_CONTAINED_BY,DOCUMENT_NODE,DOCUMENT_POSITION_CONTAINS,appendChild,isSameNode,lookupPrefix,lookupNamespaceURI}
FUNCTION PROFILE:
1 Bar(j) ("html-script-2.js"@4.1-4.49:) arg[0] = 222 result = undefined
1 Foo(i) ("html-script-2.js"@3.1-3.49:) arg[0] = 111 result = undefined
3 f(obj) ("html-script-2.js"@5.1-5.47:) arg[0] = map[6] U map[4] U map[153] result = undefined
PROPERTY ACCESS RECEIVER PROFILE:
1 ("html-script-2.js"@11.1-11.10:) map[5]
1 ("html-script-2.js"@10.1-10.10:) map[2]
1 ("html-script-2.js"@4.32-4.46:) map[3]
1 ("html-script-2.js"@4.19-4.30:) map[0]
1 ("html-script-2.js"@3.32-3.46:) map[1]
1 ("html-script-2.js"@3.19-3.30:) map[0]
3 ("html-script-2.js"@5.19-5.44:) map[153]
3 ("html-script-2.js"@5.34-5.43:) map[6] U map[4] U map[153]
Afficher les réponses par date
Y-a-t'il des volontaires pour utiliser le web proxy pour trouver des sites sur le web qui contiennent du code JavaScript pas trop complexe?
J'ai essayé le web proxy sur des "gros" sites (google.com, amazon.com, ebay.com) et l'organisation du code JS sur ces sites est trop complexe. Le code est normalement réparti en plusieurs modules, obtenus à différents moments (tag HTML <script>, event handler HTML, "GET" d'un fichier JavaScript, eval, ...), et mon proxy n'est pas présentement en mesure de profiler ce genre de code. Un problème c'est que les fonctions de support du profileur sont duplicatées dans chaque module profilé, ce qui cause des interférences. Je ne vois pas de façon facile de contourner ce problème. Il faudrait que quelqu'un se penche sur ce problème pour qu'on puisse faire des tests sur des sites quelconques.
Marc
Le 11-10-13 21:37 , Marc Feeley a écrit :
Y-a-t'il des volontaires pour utiliser le web proxy pour trouver des sites sur le web qui contiennent du code JavaScript pas trop complexe?
J'ai essayé le web proxy sur des "gros" sites (google.com, amazon.com, ebay.com) et l'organisation du code JS sur ces sites est trop complexe. Le code est normalement réparti en plusieurs modules, obtenus à différents moments (tag HTML<script>, event handler HTML, "GET" d'un fichier JavaScript, eval, ...), et mon proxy n'est pas présentement en mesure de profiler ce genre de code. Un problème c'est que les fonctions de support du profileur sont duplicatées dans chaque module profilé, ce qui cause des interférences. Je ne vois pas de façon facile de contourner ce problème. Il faudrait que quelqu'un se penche sur ce problème pour qu'on puisse faire des tests sur des sites quelconques.
Je suggère qu'on en parle après la revue de la présentation de Maxime.
Erick
Marc
Dlteam-list mailing list Dlteam-list@iro.umontreal.ca https://webmail.iro.umontreal.ca/mailman/listinfo/dlteam-list
On 2011-10-13, at 9:37 PM, Marc Feeley wrote:
Un problème c'est que les fonctions de support du profileur sont duplicatées dans chaque module profilé, ce qui cause des interférences. Je ne vois pas de façon facile de contourner ce problème. Il faudrait que quelqu'un se penche sur ce problème pour qu'on puisse faire des tests sur des sites quelconques.
Dalil aura à résoudre ce problème pour son projet (en fait, notre stratégie d'instrumentation est un peu différente de la tienne à cet égard). Je crois que la même solution s'appliquerait pour les deux outils.
Bruno